From 3d8b5cbf773fef2f266dad485ba7ebf929623640 Mon Sep 17 00:00:00 2001 From: emgeier Date: Fri, 13 Mar 2026 14:11:27 -0500 Subject: [PATCH 1/5] relations tabl --- .github/workflows/generate_relation_data.yml | 78 + broken_caching_menu.js | 225 + browse.html | 15 +- menu.js | 11 +- menus/events.json | 1554 - mode.js | 2 + modes/relation.js | 634 + person/README.md | 28 +- relation/README.md | 66 + relation/all_person_relation_factoids.json | 51461 ++++++++++++++++ relation/all_relation_factoids.json | 3569 ++ relation/batch_query_person_relationship.sh | 151 + relation/batch_query_relationships.sh | 98 + relation/filter_factoids.js | 47 + relation/filtered_relation_factoids.json | 1191 + relation/get_all_relationships.sh | 94 + relation/person.json | 7853 +++ .../factoids_acquaintance-of.json | 221 + .../factoids_addressee-of.json | 8 + .../factoids_alliance-with.json | 1124 + .../factoids_ancestor-of.json | 8 + .../factoids_baptized.json | 39 + .../factoids_bishop-over-bishop.json | 649 + .../factoids_bishop-over-clergy.json | 1797 + .../factoids_bishop-over-monk.json | 268 + .../factoids_bishop-over.json | 396 + ...oids_bringer-of-legal-charges-against.json | 658 + .../factoids_brotherhood-with.json | 8 + .../factoids_carrier-of-letter-from.json | 469 + .../factoids_carrier-of-letter-to.json | 434 + ...ids_casual-intimate-relationship-with.json | 8 + .../factoids_child-of-sibling-of.json | 101 + .../factoids_child-of.json | 593 + .../factoids_cited-negatively.json | 253 + .../factoids_cited-positively.json | 3228 + .../factoids_cited.json | 1577 + .../factoids_clergy-for.json | 8 + .../factoids_clerical-relationship.json | 8 + .../factoids_co-located.json | 8 + .../factoids_colleague-of.json | 8 + .../factoids_command-over.json | 39 + .../factoids_commemorates.json | 2678 + .../factoids_commune-together.json | 469 + .../factoids_conceptually-related.json | 8 + .../factoids_confessor-for.json | 8 + .../factoids_cousin-of.json | 70 + .../factoids_descendent-of.json | 35 + .../factoids_destruction.json | 8 + .../factoids_disciplinary-associate.json | 8 + .../factoids_employer-of.json | 8 + .../factoids_enmity-for.json | 3187 + .../factoids_epistolary-relationship.json | 8 + .../factoids_extended-family-of.json | 8 + .../factoids_extended-household-of.json | 8 + .../factoids_family-of.json | 8 + .../factoids_fellow-clergy.json | 797 + .../factoids_fellow-monastics.json | 1034 + .../factoids_follower-of.json | 613 + .../factoids_freed-slave-of.json | 8 + .../factoids_friendship-for.json | 1787 + .../factoids_godparent-for.json | 8 + .../factoids_grandchild-of.json | 8 + .../factoids_grandparent-of.json | 39 + .../factoids_great-grandparent-of.json | 8 + .../factoids_hereditary-family-of.json | 8 + .../factoids_house-slave-of.json | 35 + .../factoids_household-of.json | 225 + .../factoids_informant-network-with.json | 8 + .../factoids_intellectual-relationship.json | 8 + .../factoids_intimate-relationship-with.json | 8 + .../factoids_judge-of.json | 268 + .../factoids_judicial-relationship.json | 8 + .../factoids_kin-of.json | 128 + ..._legally-recognized-relationship-with.json | 8 + .../factoids_member-of-group.json | 570 + .../factoids_military-relationship.json | 8 + .../factoids_monastic-head-over.json | 713 + .../factoids_monastic-relationship.json | 8 + .../factoids_not-to-be-confused-with.json | 8 + .../factoids_oral-informant-about.json | 8 + .../factoids_oral-informant-to.json | 8 + .../factoids_ordained.json | 1940 + .../factoids_parent-of.json | 329 + .../factoids_patron-of.json | 140 + .../factoids_persecuted.json | 8 + .../factoids_possibly-identical.json | 8 + .../factoids_professional-relationship.json | 5854 ++ .../factoids_proximate-event.json | 1020 + .../factoids_reader-of-handwriting-of.json | 8 + .../factoids_reader-of.json | 8 + .../factoids_recipient-of-letter-from.json | 8 + .../factoids_refuter-of.json | 43 + .../factoids_related-event.json | 8 + .../factoids_religious-relationship.json | 8 + .../factoids_ritual-kinship.json | 8 + .../factoids_same-event.json | 624 + .../factoids_sender-of-letter-to.json | 12994 ++++ ...ds_serious-intimate-relationship-with.json | 8 + .../factoids_share-a-name.json | 8 + .../factoids_shares-attribution-with.json | 8 + .../factoids_sibling-of-parent-of.json | 39 + .../factoids_sibling-of.json | 1328 + .../factoids_slave-of.json | 66 + .../factoids_spouse-of.json | 1034 + .../factoids_student-of.json | 209 + ...ctoids_submitter-of-legal-petition-to.json | 128 + .../factoids_written-informant-about.json | 8 + relation/relationship_types.json | 918 + relation/search.js | 225 + utils/cleanUi.js | 47 + 110 files changed, 117282 insertions(+), 1579 deletions(-) create mode 100644 .github/workflows/generate_relation_data.yml create mode 100644 broken_caching_menu.js delete mode 100644 menus/events.json create mode 100644 modes/relation.js create mode 100644 relation/README.md create mode 100644 relation/all_person_relation_factoids.json create mode 100644 relation/all_relation_factoids.json create mode 100644 relation/batch_query_person_relationship.sh create mode 100755 relation/batch_query_relationships.sh create mode 100644 relation/filter_factoids.js create mode 100644 relation/filtered_relation_factoids.json create mode 100644 relation/get_all_relationships.sh create mode 100644 relation/person.json create mode 100644 relation/person_factoids_by_relationship/factoids_acquaintance-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_addressee-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_alliance-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_ancestor-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_baptized.json create mode 100644 relation/person_factoids_by_relationship/factoids_bishop-over-bishop.json create mode 100644 relation/person_factoids_by_relationship/factoids_bishop-over-clergy.json create mode 100644 relation/person_factoids_by_relationship/factoids_bishop-over-monk.json create mode 100644 relation/person_factoids_by_relationship/factoids_bishop-over.json create mode 100644 relation/person_factoids_by_relationship/factoids_bringer-of-legal-charges-against.json create mode 100644 relation/person_factoids_by_relationship/factoids_brotherhood-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_carrier-of-letter-from.json create mode 100644 relation/person_factoids_by_relationship/factoids_carrier-of-letter-to.json create mode 100644 relation/person_factoids_by_relationship/factoids_casual-intimate-relationship-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_child-of-sibling-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_child-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_cited-negatively.json create mode 100644 relation/person_factoids_by_relationship/factoids_cited-positively.json create mode 100644 relation/person_factoids_by_relationship/factoids_cited.json create mode 100644 relation/person_factoids_by_relationship/factoids_clergy-for.json create mode 100644 relation/person_factoids_by_relationship/factoids_clerical-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_co-located.json create mode 100644 relation/person_factoids_by_relationship/factoids_colleague-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_command-over.json create mode 100644 relation/person_factoids_by_relationship/factoids_commemorates.json create mode 100644 relation/person_factoids_by_relationship/factoids_commune-together.json create mode 100644 relation/person_factoids_by_relationship/factoids_conceptually-related.json create mode 100644 relation/person_factoids_by_relationship/factoids_confessor-for.json create mode 100644 relation/person_factoids_by_relationship/factoids_cousin-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_descendent-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_destruction.json create mode 100644 relation/person_factoids_by_relationship/factoids_disciplinary-associate.json create mode 100644 relation/person_factoids_by_relationship/factoids_employer-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_enmity-for.json create mode 100644 relation/person_factoids_by_relationship/factoids_epistolary-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_extended-family-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_extended-household-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_family-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_fellow-clergy.json create mode 100644 relation/person_factoids_by_relationship/factoids_fellow-monastics.json create mode 100644 relation/person_factoids_by_relationship/factoids_follower-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_freed-slave-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_friendship-for.json create mode 100644 relation/person_factoids_by_relationship/factoids_godparent-for.json create mode 100644 relation/person_factoids_by_relationship/factoids_grandchild-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_grandparent-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_great-grandparent-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_hereditary-family-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_house-slave-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_household-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_informant-network-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_intellectual-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_intimate-relationship-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_judge-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_judicial-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_kin-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_legally-recognized-relationship-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_member-of-group.json create mode 100644 relation/person_factoids_by_relationship/factoids_military-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_monastic-head-over.json create mode 100644 relation/person_factoids_by_relationship/factoids_monastic-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_not-to-be-confused-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_oral-informant-about.json create mode 100644 relation/person_factoids_by_relationship/factoids_oral-informant-to.json create mode 100644 relation/person_factoids_by_relationship/factoids_ordained.json create mode 100644 relation/person_factoids_by_relationship/factoids_parent-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_patron-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_persecuted.json create mode 100644 relation/person_factoids_by_relationship/factoids_possibly-identical.json create mode 100644 relation/person_factoids_by_relationship/factoids_professional-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_proximate-event.json create mode 100644 relation/person_factoids_by_relationship/factoids_reader-of-handwriting-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_reader-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_recipient-of-letter-from.json create mode 100644 relation/person_factoids_by_relationship/factoids_refuter-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_related-event.json create mode 100644 relation/person_factoids_by_relationship/factoids_religious-relationship.json create mode 100644 relation/person_factoids_by_relationship/factoids_ritual-kinship.json create mode 100644 relation/person_factoids_by_relationship/factoids_same-event.json create mode 100644 relation/person_factoids_by_relationship/factoids_sender-of-letter-to.json create mode 100644 relation/person_factoids_by_relationship/factoids_serious-intimate-relationship-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_share-a-name.json create mode 100644 relation/person_factoids_by_relationship/factoids_shares-attribution-with.json create mode 100644 relation/person_factoids_by_relationship/factoids_sibling-of-parent-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_sibling-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_slave-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_spouse-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_student-of.json create mode 100644 relation/person_factoids_by_relationship/factoids_submitter-of-legal-petition-to.json create mode 100644 relation/person_factoids_by_relationship/factoids_written-informant-about.json create mode 100644 relation/relationship_types.json create mode 100644 relation/search.js diff --git a/.github/workflows/generate_relation_data.yml b/.github/workflows/generate_relation_data.yml new file mode 100644 index 000000000..3a5162570 --- /dev/null +++ b/.github/workflows/generate_relation_data.yml @@ -0,0 +1,78 @@ +name: Generate Relation Data + +on: + workflow_dispatch: # Manual trigger + schedule: + - cron: '0 0 * * 0' # Weekly on Sunday at midnight + +jobs: + generate: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install jq + run: sudo apt-get update && sudo apt-get install -y jq + + - name: Get relationship types + working-directory: relation + run: | + curl -G "https://sparql.vanderbilt.edu/sparql" \ + --data-urlencode 'query= + PREFIX skos: + + SELECT DISTINCT ?subject ?label + WHERE { + VALUES (?collection) { + () + () + } + ?collection skos:member ?subject . + ?subject skos:prefLabel ?label . + } + ORDER BY ?label + ' \ + -H "Accept: application/sparql-results+json" > relationship_types.json + + echo "✓ Relationship types retrieved" + jq '.results.bindings | length' relationship_types.json + + - name: Query all relation factoids + working-directory: relation + run: | + chmod +x batch_query_relationships.sh + ./batch_query_relationships.sh + + echo "✓ All relation factoids generated" + ls -lh all_relation_factoids.json + + - name: Filter relation factoids + working-directory: relation + run: | + node filter_factoids.js + + echo "✓ Filtered relation factoids generated" + ls -lh filtered_relation_factoids.json + + - name: Query person relation factoids + working-directory: relation + run: | + chmod +x batch_query_person_relationship.sh + ./batch_query_person_relationship.sh + + echo "✓ Person relation factoids generated" + ls -lh all_person_relation_factoids.json + + - name: Commit and push changes + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git add relation/*.json + git diff --staged --quiet || git commit -m "chore: update relation data files [skip ci]" + git push diff --git a/broken_caching_menu.js b/broken_caching_menu.js new file mode 100644 index 000000000..44dccd439 --- /dev/null +++ b/broken_caching_menu.js @@ -0,0 +1,225 @@ +export const SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; + + +// Add filter menu options +// Example: wrap your SPARQL calls +// export async function getEventKeywords() { +// return fetchWithCache('eventKeywords', async () => { +// const response = await fetch('../menus/events.json'); + +// if (!response.ok) throw new Error('Failed to load event keywords'); +// return response.json(); +// }); +// } + + + +export const getEventKeywords = () => ` + PREFIX swdt: + SELECT DISTINCT ?keyword + FROM + WHERE { + ?event swdt:event-keyword ?keyword . + } + ORDER BY ?keyword +`; + +export const getRelationshipOptions = () => ` + PREFIX skos: + SELECT DISTINCT ?collectionType ?subject ?label + WHERE { + VALUES (?collection ?collectionType) { + ( "directed") + ( "mutual") + } + ?collection skos:member ?subject . + ?subject skos:prefLabel ?label . + } + ORDER BY ?collectionType ?label +`; + +export const getEthnicityOptions = () => ` + PREFIX swdt: + SELECT DISTINCT ?ethnicity + FROM + WHERE { + ?person swdt:ethnic-label ?ethnicity . + } + ORDER BY ?ethnicity +`; + +export const getPlaceOptions = () => ` + PREFIX rdfs: + PREFIX swdt: + SELECT DISTINCT ?place ?label + FROM + FROM + WHERE { + { + ?person swdt:residence ?place . + } UNION { + ?person swdt:birth-place ?place . + } UNION { + ?person swdt:death-place ?place . + } UNION { + ?event swdt:event-place ?place . + } UNION { + ?person swdt:citizenship ?place . + } + ?place rdfs:label ?label . + FILTER(LANG(?label) = "en") + } + ORDER BY ?label +`; + +export const getEducationFieldsOfStudy = () => ` + PREFIX skos: + SELECT DISTINCT ?subject ?label + WHERE { + skos:member ?subject . + ?subject skos:prefLabel ?label . + } + ORDER BY ?label +`; +export const getOccupationOptions = () => ` + PREFIX skos: + SELECT DISTINCT ?occupation ?label + WHERE { + skos:member ?occupation . + ?occupation skos:prefLabel ?label . + } + ORDER BY ?label +`; + +/** + * Populates a element with options from a SPARQL query above */ export async function populateDropdown(query, dropdownId, labelField = "label", valueField = "value") { + const cacheKey = `dropdown_${dropdownId}`; + try { - const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { - headers: { Accept: 'application/sparql-results+json' } + const data = await fetchWithCache(cacheKey, async () => { + const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { + headers: { Accept: 'application/sparql-results+json' } + }); + return res.json(); }); - const data = await res.json(); + const select = document.getElementById(dropdownId); if (!select) return; diff --git a/menus/events.json b/menus/events.json deleted file mode 100644 index df026eda9..000000000 --- a/menus/events.json +++ /dev/null @@ -1,1554 +0,0 @@ - -{ - "head" : { - "vars" : [ "keyword" ] - }, - "results" : { - "bindings" : [ { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/accession" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/actors" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/administration" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/adultery" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/affective-piety" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/afterlife" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/allegory" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/altars" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anathema" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anchorites" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/angels" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anointing" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anti-judaism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/anti-nestorian" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/antichrist" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/apostasy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/architects" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/architecture" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/arianism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/armies" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/arson" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/artisans" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/asceticism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/astrology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/astronomy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/authority" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bankers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/baptism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/betrothal" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bible" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/biographies" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/birth" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bishop-over" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bishops" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/blame" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/blessing" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/blindness" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/blood" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bodies" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/books" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bread" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/builders" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/buildings" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/burial" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/caesars" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/canon-law" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/catechesis" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/celibacy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/chalcedonians" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/charity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/chastity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/child-dedication" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/children" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/christianity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/christianization" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/christians" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/christology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/church-councils" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/churches" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/circumcision" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/cities" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/civil-servants" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/clergy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/coins" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/commandments" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/commemoration" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/communion" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/confession" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/conversion" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/cooks" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-carthage-251" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-laodicea-364" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/countryside" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/court" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/creation" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/creeds" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/crosses" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/cult-of-saints" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/deacons" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/death" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/decrees" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/dedication-of-church" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/demon-possession" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/demonology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/demons" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/deposition-of-rulers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/dioceses" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/diplomacy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/diptychs" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/discipleship" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/divine-judgment" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/divine-revelation" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/divorce" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/doubt" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/dreams" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/dress" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/dualism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/earthquakes" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/economics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/ecumenism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/education" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/embezzlement" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/emotions" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/emperors" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/eschatology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/ethics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/ethnicity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/eucharist" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/evil" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/exegesis" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/exile" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/exorcism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/faith" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/fall" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/falsification" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/fame" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/families" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/fasting" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/fathers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/fellowship" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/food" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/foreknowledge" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/free-will" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/friendship-for" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/gardeners" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/generals-roman" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/governors" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/grammar" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/greed" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/greek-culture" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/greek-fathers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/greek-literature" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/greek-philosophy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hagiography" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/healing" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/heaven" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hell" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/heresiology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hermitages" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/heterodoxy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/holiness" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/holy-places" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/honour" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/horses" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hospices" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hospitality" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hours" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/humility" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/huns" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/hymnography" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/identity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/idolatry" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/illness" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/imprisonment" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/incarnation" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/incense" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/inheritance" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/insanity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/inscriptions" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/insults" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/jews" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/justice" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/kings" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/labor" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/laity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/laughter" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/law" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/letters" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/light" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/liturgics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/liturgy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/love" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/madrashe" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/marriage" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/martyrdom" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/martyrs" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/material-culture" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/matins" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/medicine" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/memory" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/men" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/merchants" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/mercy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/migration" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/miracles" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/misogyny" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/mission" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/monasteries" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/monastic-heads" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/monasticism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/monks" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/mourning" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/names" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/natural-disasters" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/nature" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/nobles" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/nurses" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/oaths" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/old-age" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/omens" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/oppression" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/oracles" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/ordination" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/orphans" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/orthodoxy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/paganism" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/passion" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/passions" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/pastoral-care" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/patriarchs" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/patronage" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/peace" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/pearls" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/penitence" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/persecution" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/physicians" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/pilgrimage" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/plagues" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/poetics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/poetry" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/poets" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/polemics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/poor" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/poverty" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/prayer" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/pride" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/priests" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/probation" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/property" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/prophecy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/prophets" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/purity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/readers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/rebuke" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/redemption" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/relics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/religion" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/religious-conflict" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/religious-practices" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/repentance" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/resurrection" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/rhetoric" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sacraments" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sacrifices" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/saints" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/salvation" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/scholastics" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/school-of-the-persians" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/scribes" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/seals" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sex" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sexuality" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/shame" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/silence" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sin" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/singing" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/slavery" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/slaves" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/sleep" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/soul" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/spices" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/spiritual-or-ascetic-disciplines" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/spouses" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/students" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/stylites" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/succession" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/suffering" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/suicide" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/synagogues" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/taxes" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/teachers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/tears" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/temples" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/theodicy" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/theology" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/thoughts" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/time" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/trade" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/tradition" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/travel" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/trials" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/trinity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/usurpers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/usury" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/vespers" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/villages" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/violence" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/virginity" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/visions" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/wandering" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/war" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/water" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/wealth" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/widows" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/widows-of-the-church" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/wine" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/wisdom" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/women" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/worship" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/writing" - } - }, { - "keyword" : { - "type" : "uri", - "value" : "http://syriaca.org/taxonomy/zeal" - } - } ] - } -} diff --git a/mode.js b/mode.js index c04295e74..95ecf99fd 100644 --- a/mode.js +++ b/mode.js @@ -9,6 +9,7 @@ export function boot({ registry, defaultType = 'person' } = {}) { sidebar: document.getElementById('filter-sidebar'), personPanel: document.getElementById('personResults'), eventPanel: document.getElementById('eventResults'), + relationPanel: document.getElementById('relationResults'), }; const readTypeFromUrl = () => @@ -31,6 +32,7 @@ export function boot({ registry, defaultType = 'person' } = {}) { const togglePanels = (type) => { if (els.personPanel) els.personPanel.classList.toggle('d-none', type !== 'person'); if (els.eventPanel) els.eventPanel.classList.toggle('d-none', type !== 'event'); + if (els.relationPanel) els.relationPanel.classList.toggle('d-none', type !=='relation'); }; const wireSidebarChrome = (root, state, runSearch) => { root.addEventListener('click', (e) => { diff --git a/modes/relation.js b/modes/relation.js new file mode 100644 index 000000000..7764c9a61 --- /dev/null +++ b/modes/relation.js @@ -0,0 +1,634 @@ +// Event mode for SPEAR application: User requested filters for event factoids: by associated persons, event keywords, places, occupations, gender, uncertainty, and sources. +import { + getRelationshipOptions, + getOccupationOptions, + renderKeywordList +} from '../menu.js'; + +import persons from '../relation/all_person_relation_factoids.json' with { type: 'json' }; +import { cleanPunctuationSpacing, uriDisplayString, deduplicateFactoids } from '../utils/cleanUi.js'; +import allRelationFactoids from '../relation/filtered_relation_factoids.json' with { type: 'json' }; +import { fetchRelationFactoids } from '../relation/search.js'; + +function writeFilterParamsToUrl(filterState) { + // Preserve existing params like ?type=event, only replace filter params + const url = new URL(location.href); + const keys = ['nameSearch','gender','uncertainty','source','occupation','relation']; + keys.forEach(k => url.searchParams.delete(k)); + if (filterState.name && filterState.name.trim()) { + url.searchParams.set('nameSearch', filterState.name.trim()); + } + for (const uri of filterState.selectedGenderKeywords) url.searchParams.append('gender', uri); + if (filterState.uncertainty) url.searchParams.set('uncertainty', filterState.uncertainty); + for (const uri of filterState.selectedSourceKeywords) url.searchParams.append('source', uri); + for (const uri of filterState.selectedOccupationKeywords) url.searchParams.append('occupation', uri); + for (const uri of filterState.selectedRelationshipKeywords) url.searchParams.append('relation', uri); + history.replaceState({}, '', url); +} +const str = (x) => { + if (x == null) return ''; + if (typeof x === 'object' && 'value' in x) return (x.value ?? '').toString(); + return ('' + x); +}; + + +export default { + id: 'relation', + + sidebar(state) { + return ` +
+
+ +
+
+ +
+
+ Sources +
+ + +
+
+
+
+ + + + +
+
+
+ +
+
+ Types of Relation +
+ + +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ +
+
    +
    +
    +
    + +
    Associated Persons
    + + +
    +
    + Names +
    + + +
    +
    +
    +
    + + +
    + +
    +
    +
    + + + +
    +
    + Gender +
    + + +
    +
    + +
    +
    + + + +
    +
    +
    + +
    +
    + Occupations +
    + + +
    +
    +
    +
    + +
    + +
    + +
    +
    + +
    +
    +
    + +
    +
      +
      + +
      + + + + + +
      +
      + Uncertainty +
      + + +
      +
      +
      +
      +
      + + + + +
      +
      +
      +
      +
      + + +
      +
      + + + `; + }, + + bind(root, state, runSearch) { + // one relation-specific bucket in shared state + state.filters.relation ??= { + name: '', + personURIs: new Set(), + relationURIs: new Set(), + persons: new Set(), + relations: new Set(), + selectedRelationshipKeywords: new Set(), + selectedGenderKeywords: new Set(), + // selectedUncertaintyKeywords: new Set(), // not used directly; we store string in .uncertainty + selectedOccupationKeywords: new Set(), + selectedSourceKeywords: new Set([ + 'https://spear-prosop.org/letters-severus', + 'https://spear-prosop.org/lives-eastern-saints', + 'https://spear-prosop.org/chronicle-edessa' + ]), + uncertainty: '' // CSV of errata,dubia,incerta to exclude + }; + + const s = state.filters.relation; + const params = new URLSearchParams(location.search); + const initialName = params.get('nameSearch') || ''; + if (initialName) s.name = initialName; + + const nameInput = root.querySelector('#name-search'); + if (nameInput) { + if (initialName) nameInput.value = initialName; + + // define debounce helper (or import it?) + function debounce(fn, delay = 500) { + let timeout; + return (...args) => { + clearTimeout(timeout); + timeout = setTimeout(() => fn(...args), delay); + }; + } + + // define debounced search callback + const debouncedSearch = debounce((event) => { + s.name = event.target.value.trim(); + writeFilterParamsToUrl(s); + runSearch(); + }, 500); + + // attach listener + nameInput.addEventListener('input', debouncedSearch); + } + // Helpers + const toggleSet = (set, value) => set.has(value) ? set.delete(value) : set.add(value); + + // Gender + root.querySelectorAll('input[name="gender"]').forEach(cb => { + cb.addEventListener('change', () => { + cb.checked ? s.selectedGenderKeywords.add(cb.value) : s.selectedGenderKeywords.delete(cb.value); + writeFilterParamsToUrl(s); + runSearch(); + }); + }); + + // Uncertainty (collect checked values into CSV to exclude) + root.querySelectorAll('input[name="uncertainty"]').forEach(cb => { + cb.addEventListener('change', () => { + const chosen = [...root.querySelectorAll('input[name="uncertainty"]:checked')].map(i => i.value); + s.uncertainty = chosen.join(','); + writeFilterParamsToUrl(s); + runSearch(); + }); + }); + + // Sources with "Include All" + const srcBox = root.querySelector('#sourceSelect'); + if (srcBox) { + const all = srcBox.querySelector('input[data-all]'); + const specs = [...srcBox.querySelectorAll('input[name="source"]:not([data-all])')]; + const ALL = specs.map(cb => cb.value); + + // initialize from defaults (checked in markup) + s.selectedSourceKeywords = new Set(ALL); + + srcBox.addEventListener('change', (e) => { + const t = e.target; + if (t.matches('[data-all]')) { + if (t.checked) { + specs.forEach(cb => cb.checked = true); + s.selectedSourceKeywords = new Set(ALL); + } + } else if (t.name === 'source') { + t.checked ? s.selectedSourceKeywords.add(t.value) : s.selectedSourceKeywords.delete(t.value); + all.checked = ALL.every(v => s.selectedSourceKeywords.has(v)); + } + writeFilterParamsToUrl(s); + runSearch(); + }); + } + + // Keyword lists (using your helpers; they target the IDs we render) + const wireSearchFilter = (inputId, listSelector) => { + const input = root.querySelector(`#${inputId}`); + if (!input) return; + input.addEventListener('input', () => { + const filter = input.value.toLowerCase(); + root.querySelectorAll(`${listSelector} li`).forEach(li => { + li.style.display = li.textContent.toLowerCase().includes(filter) ? 'block' : 'none'; + }); + }); + }; + + + + renderKeywordList(getRelationshipOptions(), 'relationshipKeywordItems', 'relationshipKeywordList', 'label', 'subject', (uri) => { + toggleSet(s.selectedRelationshipKeywords, uri); + writeFilterParamsToUrl(s); + runSearch(); + }); + + renderKeywordList(getOccupationOptions(), 'occupationKeywordItems', 'occupationKeywordList', 'label', 'occupation', (uri) => { + toggleSet(s.selectedOccupationKeywords, uri); + writeFilterParamsToUrl(s); + runSearch(); + }); + + wireSearchFilter('relationship-search', '#relationshipKeywordItems'); + wireSearchFilter('occupation-search', '#occupationKeywordItems'); + + // Clear section events, active + root.addEventListener('clearSection', (e) => { + const section = e.detail.section; + const p = state.filters.relation; + console.log('Clear section event for:', section, p); + if (!p) return; + + console.log('Clearing section:', section); + if (section === 'names') { + p.name = ''; + p.personURIs = []; + p.persons = []; + } + + // Handle uncertainty section specifically + if (section === 'uncertainty') { + p.uncertainty = ''; + const sec = root.querySelector(`.clear-section-btn[data-section="${section}"]`)?.closest('.filter-section'); + sec?.querySelectorAll('input[name="uncertainty"]').forEach(cb => (cb.checked = false)); + writeFilterParamsToUrl(p); + runSearch(); + return; + } + + const map = { + names: 'name', + gender: 'selectedGenderKeywords', + source: 'selectedSourceKeywords', + occupations: 'selectedOccupationKeywords', + relationships:'selectedRelationshipKeywords', + }; + + const key = map[section]; + if (!key) return; + const val = p[key]; + if (val instanceof Set) val.clear(); + else if (Array.isArray(val)) val.length = 0; + else if (typeof val === 'string') p[key] = ''; + + // visually reset that section + const sec = root.querySelector(`.clear-section-btn[data-section="${section}"]`)?.closest('.filter-section'); + sec?.querySelectorAll('input[type="checkbox"], input[type="radio"]').forEach(cb => (cb.checked = false)); + sec?.querySelectorAll('input[type="text"], select').forEach(el => (el.value = '')); + + // Reset source checkboxes properly + if (section === 'source') { + const all = root.querySelector('#sourceSelect input[data-all]'); + if (all) all.checked = true; + root.querySelectorAll('#sourceSelect input[name="source"]:not([data-all])').forEach(cb => (cb.checked = true)); + p.selectedSourceKeywords = new Set([ + 'https://spear-prosop.org/letters-severus', + 'https://spear-prosop.org/lives-eastern-saints', + 'https://spear-prosop.org/chronicle-edessa' + ]); + } + + // Reset keyword lists + sec?.querySelectorAll('.keywordList li.selected').forEach(li => li.classList.remove('selected')); + + writeFilterParamsToUrl(p); + runSearch(); + }); + // Clear all + root.querySelector('#clearFiltersBtn')?.addEventListener('click', () => { + s.name = ''; + s.personURIs = []; + s.persons = []; + s.events = []; + s.selectedRelationshipKeywords.clear(); + s.selectedOccupationKeywords.clear(); + s.selectedGenderKeywords.clear(); + s.selectedSourceKeywords = new Set([ + 'https://spear-prosop.org/letters-severus', + 'https://spear-prosop.org/lives-eastern-saints', + 'https://spear-prosop.org/chronicle-edessa' + ]); + s.uncertainty = ''; + + // reset inputs visually + const nameInput = root.querySelector('#name-search'); + if (nameInput) nameInput.value = ''; + root.querySelectorAll('input[name="gender"]').forEach(cb => (cb.checked = false)); + root.querySelectorAll('input[name="uncertainty"]').forEach(cb => (cb.checked = false)); + // const all = root.querySelector('#eventSourceSelect input[data-all]'); + // if (all) all.checked = true; + root.querySelectorAll('#eventSourceSelect input[name="source"]:not([data-all])').forEach(cb => (cb.checked = true)); + root.querySelectorAll('.keywordList li.selected').forEach(li => li.classList.remove('selected')); + root.querySelectorAll('#relationship-search,#occupation-search').forEach(i => (i.value = '')); + const allSources = root.querySelector('#sourceSelect input[data-all]'); + if (allSources) allSources.checked = true; + root.querySelectorAll('#sourceSelect input[name="source"]:not([data-all])').forEach(cb => (cb.checked = true)); + writeFilterParamsToUrl(s); + runSearch(); + }); + }, + + + + fetch: async (state) => { + const s = state.filters.relation ?? {}; + console.log("State filters for relations:", s); + const hasName = !!(s.name && s.name.trim()); + const hasGender = (s.selectedGenderKeywords?.size ?? 0) > 0; + const hasOccupation = (s.selectedOccupationKeywords?.size ?? 0) > 0; + const hasSource = (s.selectedSourceKeywords?.size ?? 0) > 0; + const hasRelationship = (s.selectedRelationshipKeywords?.size ?? 0) > 0; + // Check if any other facet filters are applied + const hasFacet = + + s.uncertainty !== '' || hasName || hasGender ||hasOccupation ||hasSource || hasRelationship; + + // ---------- SIMPLE (JSON) ---------- +// Default page view +if (!hasFacet) { + // Load from filtered_relation_factoids.json instead of persons.json + const bindings = allRelationFactoids.results?.bindings ?? []; + const rows = bindings.map(b => ({ + factoid: str(b.factoid), + uri: str(b.factoid), + description: str(b.description), + source: str(b.source), + relationship: uriDisplayString(str((b.relationship))) + })); + + console.log('Default: showing all relation factoids from filtered JSON (' + rows.length + ' rows)'); + return deduplicateFactoids(rows); +} +// ---------- SOURCE-ONLY FILTER ---------- Don't need +if (hasSource && !hasName && !hasGender && !hasOccupation && !hasRelationship && s.uncertainty !== '' ) { + const bindings = allRelationFactoids.results?.bindings ?? []; + let rows = bindings.map(b => ({ + factoid: str(b.factoid), + uri: str(b.factoid), + description: str(b.description), + source: str(b.source), + relationship: str(b.relationship) + })); + + // Filter by selected sources + const selectedSources = Array.from(s.selectedSourceKeywords); + if (selectedSources.length > 0 && selectedSources.length < 3) { + rows = rows.filter(r => selectedSources.includes(r.source)); + console.log('Filtering by sources only:', selectedSources, 'rows:', rows.length); + } else { + console.log('Default: showing all relation factoids from filtered JSON (' + rows.length + ' rows)'); + } + + return deduplicateFactoids(rows); +} +// ---------- Person-based FILTER ---------- + +// ---------- NAME FILTER ---------- +if (hasName || hasGender || hasOccupation || hasSource) { + + const bindings = persons.results?.bindings ?? []; + let rows = bindings.map(b => ({ + factoid: str(b.factoid), + uri: str(b.factoid), + description: str(b.description), + source: str(b.source), + relationship: str(b.relationship), + name: str(b.label_en) || str(b.label_syr) || '', + personURI: str(b.person), + gender: str(b.gender), + occupation: str(b.occupation), + label_en: str(b.label_en), + label_syr: str(b.label_syr), + + })); + // Filter by selected sources + const selectedSources = Array.from(s.selectedSourceKeywords); + if (selectedSources.length > 0 && selectedSources.length < 3) { + rows = rows.filter(r => selectedSources.includes(r.source)); + console.log('Filtering by sources only:', selectedSources, 'rows:', rows.length); + } else { + console.log('Default: showing all relation factoids from filtered JSON (' + rows.length + ' rows)'); + } + // Filter by selected sources + const selectedRelationships = Array.from(s.selectedRelationshipKeywords); + if (selectedRelationships.length > 0 ) { + rows = rows.filter(r => selectedRelationships.includes(r.relationship)); + console.log('Filtering by relationship:', selectedRelationships); + } else { + console.log('No relationship keyword filters applied, skipping that filter step.'); + + } + // Filter by name + if (hasName) { + const q = (s.name ?? '').trim().toLowerCase(); + console.log('Filtering by name search:', q); + + rows = rows.filter(r => + (r.name && r.name.toLowerCase().includes(q)) + ); + + console.log('Filtering by name only:', q, 'rows:', rows.length); + } + // ---------- FILTER BY GENDER ---------- + if (hasGender) { + const selectedGenders = Array.from(s.selectedGenderKeywords).map(g => g.toLowerCase()); + console.log('Filtering by genders:', selectedGenders); + rows = rows.filter(r => + r.gender && selectedGenders.some(sel => sel === r.gender) + ); + } + // ---------- FILTER BY OCCUPATION ---------- + if (hasOccupation) { + const selectedOccs = Array.from(s.selectedOccupationKeywords); + console.log('Filtering by occupations:', selectedOccs); + console.log('Sample occupation values from data:', rows.slice(0, 5).map(r => r.occupation)); + rows = rows.filter(r => { + if (!r.occupation) return false; + // Check if any selected occupation URI matches the occupation string + // The JSON contains simple strings like "clergy", "priests", "monks" + // The selected URIs are like "http://syriaca.org/taxonomy/clergy" + return selectedOccs.some(sel => { + // Extract the last part of the URI (after the last slash) and compare + const occupationFromUri = sel.split('/').pop(); + const match = r.occupation === occupationFromUri || r.occupation === sel; + if (match) { + console.log(`Occupation match: ${r.occupation} matches ${sel} (extracted: ${occupationFromUri})`); + } + return match; + }); + }); + console.log('Rows after occupation filter:', rows.length); + } + const personURIs = rows.map(r => r.person); + const relationURIs = [...new Set(rows.map(r => r.relationship))]; + // Bind directly to state for later SPARQL queries + state.filters.relation.persons = [...new Set(personURIs)]; + + state.filters.relation.relations = [...new Set(relationURIs)]; + console.log('Bound personURIs to state:', personURIs.length); + console.log('count relation URIs:', relationURIs.length); + console.log('fetch -> JSON rows:', rows.length, 'sample:', rows[0]); + + + return deduplicateFactoids(rows); +} + + + // ---------- COMPLEX (LIVE) ---------- + else if (hasRelationship ) { + const results = await fetchRelationFactoids(state.filters.relation); + return deduplicateFactoids(results); +} + + }, + + render(facts) { + // Render into the event results panel + const panel = document.getElementById('relation--items'); + if (!panel) return; + + + + + panel.innerHTML = ` +

      Relation Factoids

      +
      ${facts.length} results
      +
        + ${facts.map(f => ` +
      • + ${cleanPunctuationSpacing(f.description) ? ` ${cleanPunctuationSpacing(f.description)} ` : ''}${f.source ? ` [${getSourceLabel(f.source)}]
        ` : ''} + ${f.relationKeyword ? `${f.relationKeyword}
        ` : ''} + ${f.relationship ? `Type of Relation: ${uriDisplayString(f.relationship)}
        ` : ''} + + ${f.uri} +
      • + `).join('')} +
      + `; + } +}; +const sourceLabels = { + "https://spear-prosop.org/letters-severus": "Letters of Severus of Antioch", + "https://spear-prosop.org/lives-eastern-saints": "Lives of the Eastern Saints", + "https://spear-prosop.org/chronicle-edessa": "Chronicle of Edessa" + +}; + +function getSourceLabel(uri) { + return sourceLabels[uri] || prettifyUri(uri); +} + diff --git a/person/README.md b/person/README.md index b19815bbd..bd8a552ef 100644 --- a/person/README.md +++ b/person/README.md @@ -1,16 +1,3 @@ -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 @@ -29,7 +16,7 @@ The SPEAR **Person Search** engine allows users to filter persons based on multi * **Gender, occupation, relationships** (optional facets) * **Names / keyword text search** -Search is executed against the **Neptune SPARQL endpoint**: +Search is executed against the **Vanderbilt University Libraries' public SPARQL endpoint**: ``` https://sparql.vanderbilt.edu/sparql @@ -42,20 +29,19 @@ All person-level data is sourced from: --- -## 🎯 Person-Level Facet Intersection (Key Concept) +## Person-Level Facet Intersection A person should be returned **if they match all selected facets**, but: -### ❗ Facets do *not* need to be satisfied by the same event. +### 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* +* They also participate in **Event B**, which has place *Edessa* 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. --- @@ -99,7 +85,7 @@ This version works for all valid person searches and returns person 1113 correct --- -## 🧪 Running Diagnostic Queries via cURL +## Troublshooting: Running Diagnostic Queries via cURL Useful for debugging when a person fails to appear in results. @@ -142,7 +128,7 @@ This reveals: --- -## 📄 Full Person Search Query (Labels + Description + Facets) +## Person Search Query (Labels + Description + Facets) This expands the facet query to retrieve multilingual labels and descriptions. @@ -199,7 +185,7 @@ ORDER BY ?label_en --- -## 🗂 Data Model Summary +## Data Model Summary | Element | Source Graph | Description | | -------------------- | ---------------- | ----------------------------- | diff --git a/relation/README.md b/relation/README.md new file mode 100644 index 000000000..3a381a054 --- /dev/null +++ b/relation/README.md @@ -0,0 +1,66 @@ +# Relation Mode + +## Overview + +The Relation mode displays factoids about relationships between persons in the SPEAR prosopography. Due to data structure limitations, relationship queries require batch processing scripts to generate the default view. + +## Generating Default Relationship Factoids + +### Prerequisites + + + +### Running the Batch Query + +1. Make the batch script executable: + +```bash +chmod +x batch_query_person_relationship.sh +``` +2. cd into relation folder, run: +```bash +./batch_query_person_relationship.sh +``` + +Or run directly with bash: + +```bash +bash batch_query_person_relationship.sh +``` + +## Data Structure Challenge + +The main issue with querying all relationships is that they require string manipulation to connect taxonomy relationship URIs with person triple prop URIs. The SPEAR data uses: + +- `/taxonomy/` URIs for relationship types in results +- `/prop/` URIs for person triples + +These should either be the same or have connecting triples in the triplestore to enable direct sparql queries of relationships. String matching or manipulating queries are not efficient in graph databases, which is why batch processing is necessary. + +## Automated Generation (GitHub Actions) + +The repository includes a GitHub Actions workflow that automatically generates all necessary JSON files: + +```bash +# Trigger manually from GitHub Actions tab +# Or runs automatically every Sunday at midnight +``` + +The workflow: +1. Fetches relationship types from SPARQL endpoint +2. Runs `batch_query_relationships.sh` to generate `all_relation_factoids.json` +3. Runs `filter_factoids.js` to create `filtered_relation_factoids.json` +4. Runs `batch_query_person_relationship.sh` to generate `all_person_relation_factoids.json` +5. Commits and pushes the updated JSON files + +Workflow file: `.github/workflows/generate_relation_data.yml` + +## Files + +- `batch_query_person_relationship.sh`: Batch script to query all relationship types with person info +- `batch_query_relationships.sh`: Batch script to query all relationship factoids +- `filter_factoids.js`: Node.js script to filter factoids by source +- `filtered_relation_factoids.json`: Pre-filtered factoids from three main sources (1,188 entries) +- `all_relation_factoids.json`: Complete relationship factoids dataset (3,569 entries) +- `all_person_relation_factoids.json`: Relationship factoids with person details +- `relationship_types.json`: List of all relationship types from taxonomy \ No newline at end of file diff --git a/relation/all_person_relation_factoids.json b/relation/all_person_relation_factoids.json new file mode 100644 index 000000000..3bddc9ddf --- /dev/null +++ b/relation/all_person_relation_factoids.json @@ -0,0 +1,51461 @@ +{ + "head": { + "vars": [ + "factoid", + "person", + "label_en", + "description", + "relationship", + "gender", + "occupation", + "source" + ] + }, + "results": { + "bindings": [ + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1533" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aaron" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1853" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2503" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "No later than 520, Stephen brought books to Severus who was in exile in Egypt." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/824-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3718" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3718" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and the monk who stole were acquainted." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "No later than 520, Stephen brought books to Severus who was in exile in Egypt." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/824-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and the monk who stole were acquainted." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1592" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Solon formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2431" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epimachus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2440" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy IV" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2441" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2443" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Constantine" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2444" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dorotheus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2445" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eutherius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2446" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Himerius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2447" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Helladius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2450" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Solon formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2490" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Bosporius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2490" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Bosporius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2491" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Helladius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2492" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-40" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2494" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Liberius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Liberius and Athanasius, bishop of Alexandria formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2515" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3019-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2546" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Entrechius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3019-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2551" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2567" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2569" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Proclus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3184" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham of Amida" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3689 formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-40" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/354" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Athanasius, bishop of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Liberius and Athanasius, bishop of Alexandria formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3686" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3686" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3686 and Anonymi 3687 formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3687" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3687" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3686 and Anonymi 3687 formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3689" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3689" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3689 formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/511" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory Nazianzen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/512" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory of Nyssa" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/784" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius , patriarch of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/alliance-with" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3748" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3748" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/baptized" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon was a bishop with authority over the bishop Epiphanius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon was a bishop with authority over the bishop Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon had ecclesiastical authority over the bishop(s) Paul and Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2492" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore had ecclesiastical authority over the bishop(s) Bosporius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter had ecclesiastical authority over the bishop(s) Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2520" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3062-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3068-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3094-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3195-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had episcopal authority over Epiphanius, but he rebelled." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-395" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2235" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 2235" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 2235 had ecclesiastical authority over Anonymi 2218." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3066-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon had ecclesiastical authority over Maximus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3075-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian had ecclesiastical authority over Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3076-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian had ecclesiastical authority over Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian had ecclesiastical authority over Agapius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-47" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2442" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen was a bishop with authority over Anonymi 3746" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3119-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2462" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Didymus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Didymus had ecclesiastical authority over Sannus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul had ecclesiastical authority over Anonymi 3065." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3047-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2479" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Victor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Victor had ecclesiastical authority over John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3083-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter was bishop over Anonymous 3740" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3054-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2520" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios had ecclesiastical authority over Anonymous 3073." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2527" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Castor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Castor had ecclesiastical authority over Anonymi 3040." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2527" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Castor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Castor had ecclesiastical authority over Anonymi 3038." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2527" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Castor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Castor had ecclesiastical authority over Anonymi 3039." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2532" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen had ecclesiastical authority over Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore was bishop with authority over Silvanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2546" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Entrechius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2547" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius had ecclesiastical authority over Anonymi 3046." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2547" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius had ecclesiastical authority over Anonymi 3050." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus had ecclesiastical authority over Mark." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2554" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon had ecclesiastical authority over Anonymous 3092." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2554" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon had ecclesiastical authority over Cosmas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2562" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius had ecclesiastical authority over Isaiah." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2574" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenus had ecclesiastical authority over Romulus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2578" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac had ecclesiastical authority over Anonymi 3080." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2578" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac had ecclesiastical authority over Anonymous 3083." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2580" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius had ecclesiastical authority over Anonymi 3034." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3062-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2581" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Alexandria Minor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Alexandria Minor had ecclesiastical authority over Anonymi 3085." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3733" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3733" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3733 had ecclesiastical authority over Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3742" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3742" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3742 had ecclesiastical authority over Leontius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/48" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mara , metropolitan of Amid" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/metropolitans" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Longinus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Hesychius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Irenaeus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anatolius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-38" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Leontius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Elijah." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Theodosius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymi 3062." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Romulus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus was bishop over Eusebius and Victor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus was a bishop with authority over Mark." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3068-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymous 3090." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymous 3093." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymous 3097." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-49" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Victor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3106-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Philip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-112" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/53" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon of Beth Arsham" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/680" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter the Iberian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter the Iberian had ecclesiastical authority over Timothy and Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-474" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2236" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Asclepius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asclepius had ecclesiastical authority over Anonymi 2221." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-97" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3186" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham had ecclesiastical authority over Anonymous 3673." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3637" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3637" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3637 had ecclesiastical authority over Zeʿora." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-32" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751 was a bishop with authority over Heracliana." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Mark." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymi 3077." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/845-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus had ecclesiastical authority over Caesaria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3076-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian had ecclesiastical authority over Aurelius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3090-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2439" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore was bishop with authority over Anonymous 3783." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3083-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter was bishop over Eutychian" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3094-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2536" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eucharius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eucharius had ecclesiastical authority over Firminus and Anonymi 3101." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore had ecclesiastical authority over Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore had ecclesiastical authority over Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751 was a bishop with authority over John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-96" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/48" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mara , metropolitan of Amid" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara, metropolitan of Amid had ecclesiastical authority over Zota." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/metropolitans" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3030-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus was a bishop with authority over Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymi 3063." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had ecclesiastical authority over Anonymi 3079." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishop-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2422" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen brought legal charges or a petition against Leontius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2458" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Hilarian brought legal charges or a petition against Eustace." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Hilarian brought legal charges or a petition against Eustace." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius brought legal charges or a petition against Callistus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius brought legal charges or a petition against Anonymi 3727." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul brought legal charges or a petition against Callistus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3055-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul brought legal charges or a petition against Hilarian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter brought legal charges or a petition against Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2542" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Polyeuctus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2543" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeno" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2544" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3038" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3046" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3046" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3046 brought legal charges or a petition against Procopius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3050" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3050" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3050 brought legal charges or a petition against Procopius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3051" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3051" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3051 brought legal charges or a petition against Adelphius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3062-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3085" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3085" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3091" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091 brought legal charges or a petition against Libanius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3094-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3101" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3101" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3101 brought legal charges or a petition against Firminus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3723" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3723" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The party of Hilarian and Musonius brought legal charges or a petition against Callistus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3727" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3727" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3727 brought legal charges or a petition against Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3734" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3734" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3734 brought legal charges or a petition against Julian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3737" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3737" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3737 brought legal charges or a petition against Nonnus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2419" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius carried a letter from Severus of Antioch to Anonymous 3738" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2480" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew carried a letter from Misael to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2489" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zenobius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zenobius carried a letter from Severus of Antioch to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2525" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2563" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Rufinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Rufinus carried a letter from Celer to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2563" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Rufinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Rufinus carried a letter from Celer to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2565" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius carried a letter from Celer to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2579" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2586" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3077-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2750" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3068-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3090" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3090" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3091" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091 carried a letter from Severus of Antioch to Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3092" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092 carried a letter from Severus of Antioch to Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3782" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3782" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3789" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2419" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius carried a letter between Severus of Antioch and Anonymous 3738" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-55" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2480" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew carried a letter from Misael to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2489" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zenobius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zenobius carried a letter from Severus of Antioch to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2525" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-28" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2565" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius carried a letter from Celer to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2579" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2586" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3077-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2750" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3068-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3090" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3090" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3091" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3091 carried a letter from Severus of Antioch to Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3092" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092 carried a letter from Severus of Antioch to Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-52" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3616" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3616" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A messenger came bearing a letter for Maria about the death of Mary." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3782" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3782" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3789" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-234" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/16" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "ʿAbshmayya" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "ʿAbshmayya was the child of a sibling of Ephrem." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/priests" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/831-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3204" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Daniel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Daniel was the child of the sibling of Abraham the Priest." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3229" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin was the child of the sister of Justinian" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-233" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/16" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "ʿAbshmayya" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "ʿAbshmayya was the child of Anonmyous 2234." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/priests" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2126" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Armenian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Armenian was the child of Šnq." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2201" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abgar VIII" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abgar VIII was the child of Maʿnu." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/king" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-114" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2249" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Constantius II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Constantius II was the child of Constantine the Great." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2434" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alypius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alypius was the child of Mitras." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2436" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mitras" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mitras was the child of Anonymous 3102." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2525" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John was the child of Matronian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3078-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2600" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasius was the child of Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3127-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2656" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Georgia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Georgia was the child of Anastasia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3135-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2683" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John was the child of Ammian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2730" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul was the son of Vivian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3229" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin was the child of Vigilantia" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3232" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maria of Amida" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Maria was the child of Anonymi 3610 and Euphemia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3235" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maro" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Maro was the child of Anonymous 3627 and Anonymous 3628." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/831-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3270" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zwṭʾ" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zwtʾ was the child of Abraham the Priest." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/836-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3692" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3692" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3692 was the child of Isaac and Anonymous 3690." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3114-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3728" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3728" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3728 was the child of Proclus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-64" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3756" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3756" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3756 were the children of Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3217-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3787" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3787" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3787 was the daughter of Georgia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/child-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Eutyches." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Irenaeus of Lyon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3159-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Theodoret." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3169-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited negatively Sabellius the Libyan." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited negatively Nestorius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited negatively Dorotheus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3176-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited negatively Hiba." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3005-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3009-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively a letter of Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3021-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3021-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively a letter by Isidore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3022-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively a letter of Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nyssa." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3027-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3027-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively a letter of Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3078-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory the Theologian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3080-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyprian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Theophilus of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Timothy of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Theophilus of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Socrates." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Dionysius of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3095-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3095-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3095-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3101-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3101-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3103-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3103-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Timothy Aelurus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3113-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3113-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3120-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3120-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3122-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3123-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nyssa." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Ignatius of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nyssa." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3131-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3131-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3131-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Athanasius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3135-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3139-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3145-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3145-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3154-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3154-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Athanasius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3159-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3159-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3160-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively the work of Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3160-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3161-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3162-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3163-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory of Nazianzus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3172-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3174-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3174-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3174-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3174-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Ignatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3183-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3183-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3196-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Athanasius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3197-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Timothy of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3209-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3221-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3221-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3221-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3223-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3225-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3226-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3226-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Athanasius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3235-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3235-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited positively Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited-positively" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2432" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3114-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2456" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Dionysios referenced Dionysios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-55" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3033-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2531" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timostratus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2532" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2532" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3042-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2574" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2576" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antipater" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Antipater referenced Antipater." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2578" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3033" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3033" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Anonymous 3033 referenced Anonymous 3033." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3042" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3042" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3042" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3042" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3080" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3080" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3080 refered to the writings of Anonymous 3082." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch refered to the writings of Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch referenced Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-55" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3033-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3042-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch refered to the writings of Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3120-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3122-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch referenced Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3136-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch refered to the writings of Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3148-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3152-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Basil." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3176-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus cited Pope Leo." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cited" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2556" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hypatius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hypatius had military command over Heliodorus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/command-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John commemorated Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John commemorated Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2547" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Procopius commemorated Lampetius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3148-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3750" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3750" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3750 commemorated Patrick" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3767" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3767" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3093-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus reluctantly permitted the commemoration of Epiphanius of Magydum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch commemorated Dioscorus I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/573" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John Chrysostom" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/793-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Habib." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Zeʿora." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/795-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-76" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Maro." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/798-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/799-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/800-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Addai." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/801-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mare." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mary." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Euphemia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-116" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-117" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-118" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Zota." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/806-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abbi." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated James ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Anonymous 3760." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/808-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/809-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated the poor man." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/810-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated a monk who left the monastery ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/811-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Zacharias as a holy person." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/812-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Anonymous 3762." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/814-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/814-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Addai." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/815-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/816-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/817-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/818-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Susan." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/820-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mary." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/821-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Malkha." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/822-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Elijah." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Elijah." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/824-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Anonymous 3718." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/826-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/827-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated the Monks of Amida." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/828-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mare." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/829-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Aaron." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Leontius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/831-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abraham ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/832-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/832-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Bassian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/832-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Romanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Daniel." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mari ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/834-36" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/834-37" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Cyriacus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/834-38" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/834-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Barhadbshabba." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/836-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Isaac ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/837-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/838-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemmorated Anonymi 3771" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-40" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Theodosius" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Anthimus" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Sergius" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Severus" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Paul" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/840-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated James." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Jacob Baradaeus" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Theodore of Hirtha" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Kashish." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/843-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Mary." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/843-28" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Theophilos." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/844-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Priscus ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/845-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Caesaria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Sosiana ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated John ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Peter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Photius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-1/" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus commemorated Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commemorates" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus communed with Castor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2458" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian and Anonymi 3065 shared the Eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2470" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul and Timothy shared the Eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3091-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2520" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysius and Indacus communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2527" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Castor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus communed with Castor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2567" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2569" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Proclus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3091-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2660" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Indacus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysius and Indacus communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2692" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter Mongus and Julian communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2699" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus and Anonymous 3781 communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2736" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter Mongus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter Mongus and Julian communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3065" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3065" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian and Anonymi 3065 shared the Eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3781" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3781" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus and Anonymous 3781 communed together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/792" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy II of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul and Timothy shared the Eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/commune-together" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3127" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3127" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3127 and Anonymous 3128 were cousins." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cousin-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3128" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3128" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3127 and Anonymous 3128 were cousins." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/cousin-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-65" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2127" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas descended from Ishakuni Bar Brʿy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/descendent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-52" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora had enmity for Agapetus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-159" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2211" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 2211" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 2211 had enmity for Anonymi 2208." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2281" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-314" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2314" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 2314" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2458" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian had enmity for Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius had enmity for Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul had enmity for Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2475" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Joseph" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Joseph expressed enmity for John" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2478" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Heracliana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Heracliana had enmity for Anonymous 3751." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-36" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2494" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Liberius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Liberius had enmity for Constantius II." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2496" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaiah" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2500" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius anathematized Isaiah" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus had enmity for Anonymi 3059." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2580" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3195-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2580" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had episcopal authority over Epiphanius, but he rebelled." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3042-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2588" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aegilas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Aegilas had enmity for Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3009-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2684" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John wrote a letter to Severus denouncing Timothy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2730" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3034" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3034" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3034 had enmity for Epiphanius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3034" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3034" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-35" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3052" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3052" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3052 had enmity for Adelphius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3067" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3067" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3068" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3068" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3068" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3068" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3069" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3069" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3069" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3069" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3070" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3070" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3070" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3070" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3115" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3115" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3115 had enmity for Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3134" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3134" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3134 had enmity for Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3154" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius had enmity for Anonymi 3686." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-49" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3184" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham of Amida" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3689 had enmity for Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3226" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John had enmity for Thomas the Armenian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-109" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3675" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3675" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3675 had enmity for Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-110" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3675" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3675" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3675 had enmity for Abraham." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-49" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3689" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3689" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3689 had enmity for Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751 had enmity for Heracliana." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril of Alexandria had enmity for Nestorius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-30" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril wrote against Theodore of Mopsuestia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Nestorius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-28" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Eutyches." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Leo." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymi 3130." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Flavian II of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3019-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus described Isidore as unphilosophic and deceitful." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Epiphanius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Bisula." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Paul." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Cosmas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus described Anonymous 3778 as a beast of burden and a pack-ass." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Elijah of Jerusalem." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymi 3054." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Paul and Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Eutyches." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymi 3071." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Martyrius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymi 3076." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus denounced Isaiah the Armenian and Anonymous 3780." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Anonymous 3781." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus urged Theotecnus to condemn Romanus in a synodical letter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3065-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymi 3086." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymous 3093." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3075-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Julian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3075-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Dorotheus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Elijah of Jerusalem." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus found the doctrine of Origen to be faulty." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus found the doctrine of Eusebius of Caesarea to be faulty." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3092-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Flavian II of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymous 3102." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus called Anatolius a false prophet." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Sergius, Diodore, Theodore, and Nestorius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3121-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Julian of Halicarnassus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Cyriac." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Flavian of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Romanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Julian of Halicarnassus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Proterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-38" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Theodotus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Sergius bar Fathya." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anonymous 3122." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-30" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Anatolius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-37" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch had enmity for Podalirius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus had enmity for Gaian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus expressed enmity for John the Grammarian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3195-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/53" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon of Beth Arsham" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon of Beth Arsham had enmity for Hiba of Edessa." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3021-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/564" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore of Pelusium" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/enmity-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/795-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1320" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John the Nazarite" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John the Nazarite and Anonymous 3679 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene and Conon were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora and Anonymi 3642 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/818-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1813" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Hephaestopolis" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2032" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Qashish and John of Ephesus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/818-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2125" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas of Damascus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2401" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy and Theodore were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2404" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Libanius and Eusebius were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2405" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Libanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Libanius and Eusebius were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2422" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2423" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2540" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy and Theodore were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2679" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and John were clergy together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2710" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and John were clergy together." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene and Conon were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-72" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3253" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel and Anonymous 3665 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/840-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3258" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Jacob Baradaeus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/840-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3266" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore of Hirtha" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus and Theodore were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3642" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3642" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora and Anonymi 3642 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-72" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3665" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3665" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel and Anonymous 3665 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/795-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3679" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3679" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John the Nazarite and Anonymous 3679 were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3741" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3741" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/818-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/50" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/840-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus and Theodore were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/840-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Jacob Baradaeus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Qashish and John of Ephesus were fellow clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora and Anonymous 3635 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1533" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aaron" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/806-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1536" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abi" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abi and John of Ephesus were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/799-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1555" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham the Recluse" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3648 and Abraham the Recluse were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1672" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Daniel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Daniel were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1853" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1876" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mari" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mari and John of Ephesus were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2011" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2032" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-50" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2032" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Qashish were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2070" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Daniel were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2092" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Suzanna" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2092" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Suzanna" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3662 and Suzanna were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/811-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2153" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias and Anonymi 3772 were monastics residing in the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2466" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Photius and Andrew were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2467" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Photius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Photius and Andrew were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2519" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Leontius were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2664" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isadora and Anonymous 3759 were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3014" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Photius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-36" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3227" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan and Samuel were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3227" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-36" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3249" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan and Samuel were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3249" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3635" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3635" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora and Anonymous 3635 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/799-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3648" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3648" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3648 and Abraham the Recluse were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3659" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3659" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3660" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3660" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3662" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3662" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3662 and Suzanna were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3669" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3669" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3693" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3693" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3759" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3759" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isadora and Anonymous 3759 were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/811-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3772" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3772" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias and Anonymi 3772 were monastics residing in the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Leontius were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/806-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abi and John of Ephesus were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mari and John of Ephesus were monks at the same monastery." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-50" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Qashish were fellow monastics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/793-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora was a follower of Habib." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2108" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore Castrensus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore was a follower of Mishael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2472" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodotus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodotus was a follower of John the Rhetor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-46" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2496" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaiah" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaiah was an alledged follower of Montanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-50" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2496" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaiah" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaiah was a follower of Mani." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2550" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Lampetius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Lampetius was a follower of Adelphius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2623" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian was a follower of Romanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2699" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3134" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3134" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3134 was a follower of Arius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/793-31" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3212" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hananya" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hananyaʾ was a follower of Habib." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/793-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3710" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Bar Nbyl" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Bar Nbyl was a follower of Mara Dada ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/824-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3716" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3716" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3716 were followers of Anonymous 3717." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/793-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3763" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Habib" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Habib was a follower of Bar Nbyl ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3780" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3780" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3780 was a follower of Isaiah the Armenian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-65" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was a follower of Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-70" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was a follower of Gregory Nazianzen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-40" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was a follower of Cyril of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was a follower of John Chrysostom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was a follower of Timothy II of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/follower-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1533" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aaron" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius and Aaron had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1771" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Harphat" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/830-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1853" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontius and Aaron had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2108" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore Castrensus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Theodore had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/811-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2153" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias and John of Ephesus had a close friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2431" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epimachus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Epimachus had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2483" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius bar Fathya" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121 and Sergius bar Fathya had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-62" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2504" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius and Eusebius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-59" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2522" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maximin" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Maximin had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2522" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maximin" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-58" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2523" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Peter had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-57" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Sergius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-56" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2525" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and John had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Isidore had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3136-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Misael and Severus of Antioch had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-62" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2562" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius and Eusebius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2568" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Theotecnus had a personal relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2568" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus and Thecla had a personal relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2570" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2570" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Alexander had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2571" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2571" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius and Alexander had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2573" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Martyrius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2597" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Anastasia expressed deep affection for one another in their letters." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2664" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isadora and Anonymous 3759 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2764" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thecla" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus and Thecla had a personal relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3025" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Euphemia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Euphemia and Anonymous 3615 were friends." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3062" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3062" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3063" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3063" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3064" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3064" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3121" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121 and Sergius bar Fathya had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3224" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Theodore had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3615" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3615" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Euphemia and Anonymous 3615 were friends." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3759" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3759" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isadora and Anonymous 3759 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3760" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3760" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Anonymous 3760 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/812-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3762" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3762" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Anonymous 3762 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Oecumenius, comes had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-56" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and John had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-57" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Sergius had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-58" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Peter had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-59" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Maximin had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Isidore had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Epimachus had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Theotecnus had a personal relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Anastasia expressed deep affection for one another in their letters." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3136-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Misael and Severus of Antioch had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Zechariah Rhetor were friends." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/56" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius , comes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Oecumenius, comes had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/comes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/58" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zechariah Rhetor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Zechariah Rhetor were friends." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Anonymous 3760 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/811-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias and John of Ephesus had a close friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/812-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus and Anonymous 3762 had a friendship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/friendship-for" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3102" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3102" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3102 was the grandparent of Alypius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/grandparent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-78" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3633" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3633" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3629 held Anonymi 3633 as a house slave." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/house-slave-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2268" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3185" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3670" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3670" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3671" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3671" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3672" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3672" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-48" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/household-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3119-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2462" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Didymus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Didymus heard a legal case against Sannus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3043" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3043" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3078" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3078" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3078 heard a legal case against Antipater." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3733" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3733" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3093-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3790" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3790" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch heard a legal case against Philip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch heard a legal case against Anonymous 3097." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3093-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/judge-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1771" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Harphat" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Harfat and Anonymous 3764 were kinsmen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/kin-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2700" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus and Anonymous 3782 had a family relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/kin-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3764" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3764" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Harfat and Anonymous 3764 were kinsmen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/kin-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3782" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3782" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus and Anonymous 3782 had a family relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/kin-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2425" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2443" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Constantine" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3112-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2455" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore was part of Anonymi 3112." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2458" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian and Musonius were part of Anonymi 3723." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian and Musonius were part of Anonymi 3723." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2485" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander of Alexandria was part of Anonymi 3089." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter was part of Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2551" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2557" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mark" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mark was part of Anonymi 3077." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3047" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3047" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3048" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3048" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3049" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3049" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-116" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3617" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3617" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3617 was part of Anonymi 3620." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-79" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3639" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3639" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3639 was part of Anonymi 3640." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was part of Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was part of Anonymi 3072." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch was part of the bishops who attended a synod in Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/member-of-group" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2095" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon was a monastic authority over Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John was a monastic authority over Epimachus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John was a monastic authority over Epimachus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2466" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew and Photius was a monastic authority over Anonymous 3730." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2467" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Photius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew and Photius was a monastic authority over Anonymous 3730." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-30" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2478" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Heracliana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Heracliana was a monastic authority over Anonymi 3752." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3023-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2629" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas was monastic head over Julian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3090-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2646" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius was an archimandrite with authority over Anonymous 3784." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2669" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia was a monastic authority over Anonymous 3033." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3029-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2780" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Valeriana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Valeriana was a monastic authority over Anonymi 3035." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-177" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3183" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abba" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abba was a monastic authority over Anonymi 3677." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-79" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3185" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-85" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3186" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-106" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3187" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham III" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/845-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3201" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmiana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmiana was a monastic authority over Caesaria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-59" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3217" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Job" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Job was a monastic authority over Anonymous 3669." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-204" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3218" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John (Urtaya)" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John was a monastic authority over Samuel, Jonathan and Anonymi 3677." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-52" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3227" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jonathan was a monastic authority over Anonymous 3669." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-65" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3234" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maro" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Maro was a monastic authority over Samuel and Anonymous 3665." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-47" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3249" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel was a monastic authority over Jonathan and Anonymous 3669." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-78" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3667" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3667" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3667 was a monastic authority over Anonymous 3662." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3738" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3738" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3738 was a monastic authority over Nonnus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/844-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/74" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Ephesus was a monastic authority over Anonymous 3720." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-46" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-53" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1336" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Kenan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/808-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2097" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon the Mountaineer" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon the Mountaineer ordained Anonymi 3700." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2415" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah of Jerusalem" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah of Jerusalem ordained Agapius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3055-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2458" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hilarian ordained Anonymi 3074." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2504" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius ordained Isaiah presbyter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-72" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2506" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paulinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paulinus ordained Evagrius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2530" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Flavian II of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Flavian II of Antioch ordained Anonymous 3032." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2562" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius ordained Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3065-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2617" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil ordained Anonymous 3087." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3031-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3037" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3037" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3037 ordained Anonymi 3036." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3122" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3122" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3122 ordained Sergius bar Fathya." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-67" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3133" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3133" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3133 ordained Basil of Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3135" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3135" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3135 ordained Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-46" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-53" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3208" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eugene" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-74" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3757" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3757" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3757 ordained Flavian I of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch ordained Philip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3092-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch ordained Anonymi 3100." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-57" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/513" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory the Wonderworker" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Gregory the Wonderworker ordained Phaedimus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-29" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus and others ordained Paul as bishop of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-46" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/841-53" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/842-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/69" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob Baradaeus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-57" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/958" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius of Samosata" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius of Samosata ordained Anonymi 3132." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/ordained" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-39" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2482" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Podalirius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Podalirius was the parent of Anonymous 3123." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3007-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2628" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Conon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Conon was the father of Anonymous 3774" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3127-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3119" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3119" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3119 was the parent of Georgia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3120" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3120" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3120 was the parent of Sergius bar Fathya." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3624" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3624" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3624 was the parent of John of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3625" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3625" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3625 was the parent of John of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-71" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3670" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3670" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3670 was the parent of Abraham and Anonymous 3671." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/820-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3696" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3696" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3696 was the parent of Mary the Mourner." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3706" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3706" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3706 was the parent of Suzanna." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-36" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3755" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3755" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3755 was the parent of Anonymous 3754." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3758" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3758" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3758 was the parent of Father Poemen ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3020" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana acted as patron of John of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patron-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patron-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patron-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patron-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-553" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1529" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Honorios and Theodosius II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1820" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Caesaria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/808-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2097" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon the Mountaineer" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon the Mountaineer and Anonymi 3701 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2108" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore Castrensus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Mishael had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2108" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore Castrensus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Theodore had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2108" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore Castrensus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Justinian had a professional relationship/" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-481" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2236" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Asclepius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asclepius and Euphrasios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2239" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Bardin" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Bar Din and Bulid had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-133" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2241" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Barsa" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Barsa and Constantius II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2243" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Bulid" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Bar Din and Bulid had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-133" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2249" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Constantius II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Barsa and Constantius II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Flavian II of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-404" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Euphemios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-438" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Macedonios II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-444" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Vitalian and Anastasios I had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-262" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2266" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Arcadius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Arcadius and Honorios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-262" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2267" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Honorios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Arcadius and Honorios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-553" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2267" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Honorios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Honorios and Theodosius II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-459" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2268" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-463" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2268" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-521" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2268" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I and Justin I had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-371" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2273" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeno" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontios and Zeno had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-404" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2277" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Euphemios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Euphemios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-481" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2278" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Euphrasios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asclepius and Euphrasios had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-489" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2278" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Euphrasios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2281" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2281" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-463" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2281" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Justinian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mishael and Justinian had a professional relationhsip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Justinian had a professional relationship/" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-489" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-521" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I and Justin I had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-38" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2285" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Qayuma bar Magartat" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/scribes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-371" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2287" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Leontios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Leontios and Zeno had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/usurpers" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-463" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2296" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Pawla" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-489" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2296" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Pawla" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-444" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2311" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Vitalian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Vitalian and Anastasios I had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-38" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2313" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Yahab bar Shemesh" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/scribes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3047-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2400" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Aelian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2400" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eustathios and John had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2402" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eustathios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eustathios and John had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2406" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ignatius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2407" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marion" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul and Solon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon and Paul had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius, comes and Solon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2424" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2433" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Victor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Victor had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2437" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philip" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Philip had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2465" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul and Solon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2468" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon and Paul had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-34/" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2475" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Joseph" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2476" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zacharias" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751 and Zacharias had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-34/" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2477" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2480" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-54" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2487" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Julian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3083-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3034-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2526" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2528" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius and Anonymi 3129 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2529" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Claudiupolis" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2530" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Flavian II of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Flavian II of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Isidore had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2545" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2546" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Entrechius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius and Entrechius had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2548" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius and Entrechius had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2552" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antiochus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus and Anonymi 3055 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2554" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3054 and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2554" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2556" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hypatius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hypatius and Anonymous 3056 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mishael and Justinian had a professional relationhsip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Mishael had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2559" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleutherius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Eleutherius had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2560" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2561" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Symbatius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2562" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius and Timothy II of Alexandria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2562" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2566" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen the deacon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2582" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abba" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3047-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2589" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aelian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Aelian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2606" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Archelaus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2610" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2621" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana and Caesaria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2621" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Caesaria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3034-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2655" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Gennadius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2667" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2668" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "James" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and James had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2669" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2669" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-438" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2696" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Macedonius II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I and Macedonios II had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2705" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Menas of Tyre" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2722" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maximus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3051-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2724" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Neon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Neon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2730" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3104-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2754" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3103 and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2767" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2767" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2782" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Apophon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Apophon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3020" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana and Caesaria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3034" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3034" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3044" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3044" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3044 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3054" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3054" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3054 and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3055" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3055" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus and Anonymi 3055 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3056" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hypatius and Anonymous 3056 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3056" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymous 3056 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3060" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3060" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3060 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3061" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3061" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3061 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3067" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3067" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3068" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3068" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3069" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3069" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3070" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3070" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3072" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3072" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3072 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3093" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3093" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3099" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3099" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3099 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3092-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3099" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3099" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3099 and Anonymi 3100 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3092-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3100" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3100" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3099 and Anonymi 3100 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3104-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3103" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3103" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3103 and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3114" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3114" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3114 and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3129" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3129" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius and Anonymi 3129 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3131" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3131" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3224" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Justinian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/848-23" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3224" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Theodore had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/808-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3701" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3701" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon the Mountaineer and Anonymi 3701 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751 and Zacharias had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-34/" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3768" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3768" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora and Anonymous 3768 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3768" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3768" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3768 and Anonymous 3769 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3769" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3769" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora and Anonymous 3769 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3769" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3769" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3768 and Anonymous 3769 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3778" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3778" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Anonymous 3778 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/44" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenos of Mabbug" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/metropolitans" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-459" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/44" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenos of Mabbug" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/metropolitans" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-19" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3034-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3044 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Anonymous 3778 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Apophon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Isidore had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymous 3056 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Eleutherius had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3061 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3060 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3051-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Neon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius, comes and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3072 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3056-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-26" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3083-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3099 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3114 and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-54" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Julian had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and James had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Philip had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus and Victor had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-459" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/56" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius , comes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius, comes and Severus of Antioch had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/comes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/56" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius , comes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius, comes and Solon had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/comes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-51" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/680" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter the Iberian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora and Anonymous 3768 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora and Anonymous 3769 had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/784" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius , patriarch of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-45" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/792" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy II of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Epiphanius and Timothy II of Alexandria had a professional relationship." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/professional-relationship" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-12" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3063-12" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-15" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3063-12" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-12" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-14" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-15" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-14" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-3" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-3" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus defended Julian against charges that he attempted to mislead Anastasios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-26" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-3" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-3" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3079-26" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus defended Julian against charges that he attempted to mislead Anastasios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-26" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3079-26" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-17" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-18" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3109-19" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-311" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-388" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-388" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-388" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-388" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-388" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-389" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-396" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-408" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-408" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 Anastasios deposed Euphemius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-409" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-408" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-408" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-409" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 Anastasios deposed Euphemius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-409" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-409" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-420" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-420" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-421" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-420" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-420" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-421" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-421" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-421" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-482" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-476" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-482" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-482" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-501" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-501" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-502" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-501" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-504" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-501" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-501" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-502" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-502" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-502" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-504" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-504" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-533" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-531" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-533" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-533" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-542" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-538" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-542" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-542" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/proximate-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "While in exile, Severus came into conflict with Julian of Halicarnassus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/refuter-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-6" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3018-6" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-2" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3018-6" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-11" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3026-11" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-11" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3026-11" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-11" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3050-11" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-11" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3050-11" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-10" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3063-10" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-1" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3063-9" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-10" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-1" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-1" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-1" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-6" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-2" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-2" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/3064-2" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-18" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-18" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-545" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-18" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-261" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-261" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-554" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-261" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-476" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-476" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-555" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-476" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-18" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-545" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-545" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-545" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-546" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-546" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-79" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-546" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The walls of Edessa were destroyed in 302/3 A. Gr. 614 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-261" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-554" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-554" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-554" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-476" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-555" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-555" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-555" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-546" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-79" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-79" + }, + "person": { + "type": "uri", + "value": "https://spear-prosop.org/8559-79" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The walls of Edessa were destroyed in 302/3 A. Gr. 614 ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/same-event" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1592" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-20" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2265" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasios I sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2402" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eustathios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eustathios sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2407" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marion" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-74" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2409" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter sent a letter to Constantine." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3066-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2417" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Solon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2424" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John wrote a letter to Severus about Ascalon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3169-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2427" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-42" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-43" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John wrote a letter to Severus about Ascalon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3169-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2428" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus II" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus wrote a letter to Severus indicating that he had received into communion Castor" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3194-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2432" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dioscorus I wrote a letter to Severus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3175-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2433" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Victor" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3106-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2437" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philip" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Philip sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3196-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2437" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philip" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-37" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2441" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore sent a letter to Epimachus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-49" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2441" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3112-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2455" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore sent a letter to Thomas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3114-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2456" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Dionysios sent a letter to Fabius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2460" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3130-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2465" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Julian sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2480" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus received a letter from Andrew." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-46" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2480" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3088-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2507" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theophilos" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2513" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Constantine" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Constantine sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter sent a letter to Severus accusing him with performing invalid ordinations." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2514" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter sent a letter to Thomas accusing Severus of performing invalid ordinations." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3034-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2526" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3033-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2531" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timostratus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Timostratus sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2540" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore sent letters to Cosmas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2542" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Polyeuctus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2543" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeno" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2544" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus sent a letter to Anonymous 3056." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2553" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Antoninus sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3136-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Misael sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3137-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2558" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Misael" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Misael sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2559" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleutherius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eleutherius sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2559" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleutherius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eleutherius sent a letter to Anonymi 3061." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2564" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Celer" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Celer sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2564" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Celer" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Celer sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3019-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2567" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius wrote a letter to Severus about a trial of some presbyters." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3158-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2567" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius sent a letter to Severus discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3159-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2567" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eleusinius sent a letter to Severus discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2568" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Severus about uncanonical ordinations." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2568" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2568" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theotecnus wrote a letter to Severus about the theological erros of Romanus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3113-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2569" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Proclus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2570" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander and Musonius sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2571" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Musonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alexander and Musonius sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2572" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John III of Nicaea" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John wrote a letter to Dioscorus and Chaeremon" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3121-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2574" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Philoxenus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2582" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abba" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abba sent a letter to Severus of Antioch on the subject of marriage and divorce." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3137-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2593" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ammian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3223-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2594" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ammonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2595" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ammonius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Ammonius wrote a letter to Severus defending Peter Mongus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3100-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2597" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2597" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3089-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2606" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Archelaus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3076-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2614" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Aurelius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Aurelius sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3118-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3122-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3123-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3131-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3144-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3197-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3198-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria Hypatissa wrote a letter to Severus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3227-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2620" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2621" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3217-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2639" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Dorotheus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2641" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Elisha" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3137-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2642" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Epagathus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3209-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2647" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3209-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2647" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/eunuchs" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3113-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2650" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebuna" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3128-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2652" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Eustace" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3181-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2663" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac the Scholastic sent a letter to Severus about Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2664" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidora sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3015-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2665" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore sent a letter to Severus asking about trinity and Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3168-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2665" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore sent a letter to Severus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2667" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2675" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John bar Aphthonia sent a letter to Andrew." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3009-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2684" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John wrote a letter to Severus denouncing Timothy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3007-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2685" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John wrote a letter to Severus about the marriage of Conon's daughter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2700" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2705" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Menas of Tyre" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3176-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2747" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3103-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2748" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3133-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2748" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2751" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3104-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2754" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simeon sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3235-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2755" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Simus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Simus wrote a letter to Severus discussing the creation of human bodies and souls." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3077-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2762" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2764" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thecla" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thecla sent a letter to Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3162-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2770" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3121-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2771" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2773" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Timothy" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3188-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2776" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Urban" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Urban wrote a letter to Severus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3038" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3053" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3053" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3056" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056 sent a letter to Conon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3048-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3072" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3072 sent a letter to Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3080" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3080" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3080 sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3126" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3126" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3126 sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3721" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3721" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3047-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3725" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3725" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3725 sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3150-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3729" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3729" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3082-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3739" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3739" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3739 sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3148-17" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3750" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3750" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3750 sent a letter to Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/376" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/376" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/376" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea sent a letter to Anonymi 3116." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/376" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil of Caesarea sent a letter to Anonymi 3117." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3183-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3786" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3786" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3217-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3787" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3787" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/430" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cyril of Alexandria sent a letter to Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3121-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/50" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/bishops" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3001-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theognostus discussing Isaiah 61.1" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3002-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Abba on the subject of marriage and divorce." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3003-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Constantine." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3004-88" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote letters on similar themes to Oecumenius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3005-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3006-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3007-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3008-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3009-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3010-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theodore urging him to keep his monastic vows." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3011-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3012-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3013-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Jannia concerning her leadership as archimandritess." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3015-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Isidore discussing the the trinity and Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3016-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3017-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3018-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3019-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3020-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3021-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3022-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3023-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3024-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3025-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3026-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Solon disucssing episcopal authority and canon law." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3027-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Conon on the origin of human sinfulness." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3028-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3029-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3030-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3031-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3033-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Timostratus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3034-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3035-30" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3036-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus replied to a letter of John on the subject of not communing with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3038-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Entrechius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3039-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3053." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3040-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3042-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3043-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3044-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3045-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3046-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3047-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Victor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3049-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Celer." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3050-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3052-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3053-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Theotecnus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3054-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Dionysios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3055-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John III of Nicaea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3057-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Alexander and Musonius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3058-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3077." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3059-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3080." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3060-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3084." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to the Fathers on the subject of baptism and ordination." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3061-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3062-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John of Alexandria Minor." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3063-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3064-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3065-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Dionysios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3066-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Solon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3067-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3068-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3066." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3069-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Eustathios." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3070-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Eusebius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3072-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3073-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3080." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3073-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3096." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3075-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Cassian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3076-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Cassian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3077-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Stephen on the subject of reading the lives of saints." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3078-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Hypatius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3081-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymous 3738." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3082-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymous 3739." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3083-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Eutychian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Conon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Anonymi 3741." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3085-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3086-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3087-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Cassian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3089-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3090-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3090-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3091-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3092-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Philoxenos of Mabbug." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3093-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Nonnus on the disobedience of Pelagius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3094-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Eucharius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3095-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3096-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3097-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3098-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Dioscorus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3100-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3103-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3104-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Simeon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3106-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Philip." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-18" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3109-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3110-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3112-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3113-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3114-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Proclus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3115-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Caesaria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3116-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Didymus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Theodore." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3117-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Thecla." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3118-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3119-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Didymus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3120-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3120-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3121-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3122-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3123-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3124-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3126-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3127-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Georgia." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3128-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3129-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3129-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3130-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Sergius II." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3130-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Marion." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3130-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Julian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3131-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3132-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3133-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3134-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Photius and Andrew." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3135-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3136-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3137-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3137-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Caesaria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3138-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Isidora." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3139-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Misael." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3141-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Andrew on the subject of ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3143-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3144-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3145-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3148-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3149-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3150-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3151-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Oecumenius on the natures of Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3152-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Simus discussing the Trinity." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3153-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Eusebius discussing the terms essence and hypostasis." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3153-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3154-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3155-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Maron on the incarnation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3156-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Maron perfection existing only in God." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3157-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Maron on the union of natures in Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3158-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Eleusinius discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3159-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Eleusinius discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3160-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3161-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Entrechius discussing Christology and the Incarnation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3162-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3163-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3164-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Thomas discussing the union of natures in Christ." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3165-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Thomas discussing purity and fasting." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3167-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Isidore on the subject Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3168-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Isidore discussing the Trinity and opposition to heresy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3169-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to John and John discussing Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3170-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3173-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to John, John, and Theodore discussing the Trinity." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3174-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3175-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3176-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3178-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3179-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3180-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3181-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3182-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3183-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3185-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3186-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3187-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3188-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3189-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3190-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3191-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3192-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3193-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3194-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3195-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3196-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Philip discussing sin, repentance, and the monastic life." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3197-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3198-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3199-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3200-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3202-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3207-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3208-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3209-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3210-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3211-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3212-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3213-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3214-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3215-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3216-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Victor discussing the gentle correction of error." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3217-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3218-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3219-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3219-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3220-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3221-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3222-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius discussing good, evil, the law, and free will." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3223-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3224-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3225-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3226-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3227-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3228-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3229-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3230-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3231-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3232-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3233-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3234-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Eugenia on the benefits of overcoming the passions." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3235-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Simus discussing the creation of human bodies and souls." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3236-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3237-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3238-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3239-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3241-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3242-1" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3095-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/56" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius , comes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/comes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3021-4" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/564" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore of Pelusium" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-106" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora, Roman empress sent a letter to Anonymous 3242." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-107" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora, Roman empress sent a letter to Stephen." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/784" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodosius , patriarch of Alexandria" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3041-15" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3056" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3056 was the sibling of the parent of Antoninus." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of-parent-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/814-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1117" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Addai" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Addai and Abraham were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-232" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/13" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ephrem" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonmyous 2234 and Ephrem were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1546" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Maron were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/814-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1548" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Addai and Abraham were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1705" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Elijah were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1705" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah and Anonymi 3715 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1798" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob the Apostle" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob the Apostle and Judas were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1880" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mary" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mary and Euphemia were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1885" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maron" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Maron were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1933" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "James of the Monastery of the Edessenes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "James and Anonymous 3760 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2011" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-89" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2127" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmo and Thomas were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-232" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2234" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonmyous 2234" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonmyous 2234 and Ephrem were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-70" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2246" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Commodus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Lucius Verus and Commodus were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2274" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Ephrem of Amida" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Ephrem of Amida were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-70" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2288" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Lucius Verus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Lucius Verus and Commodus were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-145" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2309" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Valens" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Valentinian I and Valens were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/8559-145" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2310" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Valentinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Valentinian I and Valens were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/chronicle-edessa" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2409" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Peter" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter and Severus of Antioch were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2410" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Serenus and Julian were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-16" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2412" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Serenus" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Serenus and Julian were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2597" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia and Innocent were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3125-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2661" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Innocent" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia and Innocent were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/804-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3025" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Euphemia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mary and Euphemia were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3142-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3125" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Judas" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Jacob the Apostle and Judas were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3140" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Elijah were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3140" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Anonymi 3715 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-72" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3185" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3671 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-89" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3202" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmo" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Cosmo and Thomas were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3226" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Ephrem of Amida were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-77" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3253" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel and Anonymous 3667 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-81" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3606" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3606" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-81" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3607" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3607" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3654" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3654" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/847-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3655" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3655" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/819-77" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3667" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3667" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Samuel and Anonymous 3667 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/10510-72" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3671" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3671" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Abraham and Anonymous 3671 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3715" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3715" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Anonymi 3715 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/823-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3715" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3715" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Elijah and Anonymi 3715 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/807-25" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3760" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3760" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "James and Anonymous 3760 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3770" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Vigilantia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian and Vigilantia were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-81" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/48" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mara , metropolitan of Amid" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/metropolitans" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3099-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Peter and Severus of Antioch were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/839-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/51" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Severus of Antioch" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian and Vigilantia were siblings." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/sibling-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/patriarchs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3107-14" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3745" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3745" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3744 enslaved Anonymous 3745." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/slave-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/803-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3765" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3765" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3765 were enslaved by Anonymous 3764 and Harfat." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/slave-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/836-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1788" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac and Anonymous 3690 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1820" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana and John were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/843-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2121" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theophilos" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theophilos and Mary were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2126" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Armenian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Armenian and Anonymous 3233 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-105" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2244" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Khusrau I Anushirwan" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3242 and Khusrau I Anushirwan were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/shahs" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2284" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Justinian I" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora, Roman empress and Justinian I were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/emperors" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2424" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "John" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Anonymous 3777 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2481" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anatolius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3123 and Anatolius were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3008-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2591" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Alypius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alypius and Anonymous 3775 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3127-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2596" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anastasia" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3119 and Anastasia were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3082-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2622" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Calliopius" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3011-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2766" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Anonymous 3776 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/846-5" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3020" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Sosiana and John were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/843-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3021" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mary" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theophilos and Mary were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3097" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3097" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3098 and Anonymous 3097 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3084-13" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3098" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3098" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3098 and Anonymous 3097 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3127-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3119" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3119" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3119 and Anastasia were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3120" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3120" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121 and Anonymous 3120 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-21" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3121" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3121 and Anonymous 3120 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3140-33" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3123" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3123" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3123 and Anatolius were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/813-11" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3233" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Maria the Armenian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Thomas the Armenian and Anonymous 3233 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/802-105" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3242" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3242" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3242 and Khusrau I Anushirwan were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3627" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3627" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3627 and Anonymous 3628 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-41" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3628" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3628" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3627 and Anonymous 3628 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-54" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3629" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3629" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3629 and Anonymous 3632 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/796-54" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3632" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3632" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3629 and Anonymous 3632 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/836-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3690" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3690" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Isaac and Anonymous 3690 were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3082-8" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3739" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3739" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3008-2" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3775" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3775" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Alypius and Anonymous 3775 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3011-7" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3776" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3776" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodore and Anonymous 3776 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3037-3" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3777" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3777" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "John and Anonymous 3777 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3785" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3785" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius and Anonymous 3785 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3014-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/56" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius , comes" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Oecumenius and Anonymous 3785 were married." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "occupation": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/comes" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/805-44" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/779" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora , Roman empress" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Theodora, Roman empress and Justinian I were spouses." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/spouse-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/women" + }, + "occupation": { + "type": "uri", + "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-80" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1524" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Zeʿora studied under Anonymous 3634." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/828-10" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1875" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mara the Solitary" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mara the Solitary studied under Paul the Mourner." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/833-6" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/1876" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Mari" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Mari studied under Mara of Beth Urtaye." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3116-27" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2020" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Polycarp of Smyrna" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Polycarp was a disciple of John the Evangelist" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/794-75" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3212" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Hananya" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Hananya studied under Zeʿora." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/797-22" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3698" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3698" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3698 studied under Sergius." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/lives-eastern-saints" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3111-65" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3756" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3756" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3756 studied under Isaiah." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/student-of" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3079-24" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2410" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Julian" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Julian made a legal petition to Heliodorus" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3108-34" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/2450" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Paul" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Paul petitioned Cyril of Alexandria" + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3032-12" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3038" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + }, + { + "factoid": { + "type": "uri", + "value": "https://spear-prosop.org/3071-9" + }, + "person": { + "type": "uri", + "value": "http://syriaca.org/person/3092" + }, + "label_en": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092" + }, + "description": { + "xml:lang": "en", + "type": "literal", + "value": "Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch." + }, + "relationship": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender": { + "type": "uri", + "value": "http://syriaca.org/taxonomy/men" + }, + "source": { + "type": "uri", + "value": "https://spear-prosop.org/letters-severus" + } + } + ] + } +} diff --git a/relation/all_relation_factoids.json b/relation/all_relation_factoids.json new file mode 100644 index 000000000..ea96074f9 --- /dev/null +++ b/relation/all_relation_factoids.json @@ -0,0 +1,3569 @@ +{"head":{"vars":["factoid","description","source","relationship"]},"results":{"bindings":[ +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-9"},"description":{"xml:lang":"en","type":"literal","value":"No later than 520, Stephen brought books to Severus who was in exile in Egypt."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-9"},"description":{"xml:lang":"en","type":"literal","value":"No later than 520, Stephen brought books to Severus who was in exile in Egypt."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-9"},"description":{"xml:lang":"en","type":"literal","value":"No later than 520, Stephen brought books to Severus who was in exile in Egypt."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and the monk who stole were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and the monk who stole were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and the monk who stole were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/824"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus, Leontius and Aaron were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus, Leontius and Aaron were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus, Leontius and Aaron were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/830"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3019"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-7"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Solon formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-7"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Solon formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-7"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Solon formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Eleusinius and Proclus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Eleusinius and Proclus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Eleusinius and Proclus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-25"},"description":{"xml:lang":"en","type":"literal","value":"Gregory of Nyssa, Bosporius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-25"},"description":{"xml:lang":"en","type":"literal","value":"Gregory of Nyssa, Bosporius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-25"},"description":{"xml:lang":"en","type":"literal","value":"Gregory of Nyssa, Bosporius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-29"},"description":{"xml:lang":"en","type":"literal","value":"Gregory Nazianzen, Bosporius and Theodore formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-29"},"description":{"xml:lang":"en","type":"literal","value":"Gregory Nazianzen, Bosporius and Theodore formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-29"},"description":{"xml:lang":"en","type":"literal","value":"Gregory Nazianzen, Bosporius and Theodore formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-40"},"description":{"xml:lang":"en","type":"literal","value":"Liberius and Athanasius, bishop of Alexandria formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-40"},"description":{"xml:lang":"en","type":"literal","value":"Liberius and Athanasius, bishop of Alexandria formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-40"},"description":{"xml:lang":"en","type":"literal","value":"Liberius and Athanasius, bishop of Alexandria formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-33"},"description":{"xml:lang":"en","type":"literal","value":"Isidore, Thomas, and Epimachus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-33"},"description":{"xml:lang":"en","type":"literal","value":"Isidore, Thomas, and Epimachus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-33"},"description":{"xml:lang":"en","type":"literal","value":"Isidore, Thomas, and Epimachus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-33"},"description":{"xml:lang":"en","type":"literal","value":"Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-33"},"description":{"xml:lang":"en","type":"literal","value":"Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-33"},"description":{"xml:lang":"en","type":"literal","value":"Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-24"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3686 and Anonymi 3687 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-24"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3686 and Anonymi 3687 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-24"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3686 and Anonymi 3687 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-48"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-48"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-48"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-29"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/baptized"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-29"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/baptized"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-29"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/baptized"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-3"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-3"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-3"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-6"},"description":{"xml:lang":"en","type":"literal","value":"Peter had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-6"},"description":{"xml:lang":"en","type":"literal","value":"Peter had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-6"},"description":{"xml:lang":"en","type":"literal","value":"Peter had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-6"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over the bishop(s) Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-6"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over the bishop(s) Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-6"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over the bishop(s) Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/3060"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/3062"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3068"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/3094"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore had ecclesiastical authority over the bishop(s) Bosporius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore had ecclesiastical authority over the bishop(s) Bosporius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore had ecclesiastical authority over the bishop(s) Bosporius."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/3195"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-11"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Anonymi 3034."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-11"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Anonymi 3034."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-11"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Anonymi 3034."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-45"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-45"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-45"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Longinus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Longinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Longinus."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Hesychius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Hesychius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Hesychius."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Irenaeus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Irenaeus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Irenaeus."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-10"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-10"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-10"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-6"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3038."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-6"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3038."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-6"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3038."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-8"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3039."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-8"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3039."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-8"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3039."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-20"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-20"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-20"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-10"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3046."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-10"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3046."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-10"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3046."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-13"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3050."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-13"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3050."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-13"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3050."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-9"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-9"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-9"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-11"},"description":{"xml:lang":"en","type":"literal","value":"Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-11"},"description":{"xml:lang":"en","type":"literal","value":"Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-11"},"description":{"xml:lang":"en","type":"literal","value":"Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/3045"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/3045"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-26"},"description":{"xml:lang":"en","type":"literal","value":"Paul had ecclesiastical authority over Anonymi 3065."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-26"},"description":{"xml:lang":"en","type":"literal","value":"Paul had ecclesiastical authority over Anonymi 3065."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-26"},"description":{"xml:lang":"en","type":"literal","value":"Paul had ecclesiastical authority over Anonymi 3065."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-9"},"description":{"xml:lang":"en","type":"literal","value":"Victor had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-9"},"description":{"xml:lang":"en","type":"literal","value":"Victor had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-9"},"description":{"xml:lang":"en","type":"literal","value":"Victor had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/3047"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-8"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios had ecclesiastical authority over Anonymous 3073."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-8"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios had ecclesiastical authority over Anonymous 3073."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-8"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios had ecclesiastical authority over Anonymous 3073."},"source":{"type":"uri","value":"https://spear-prosop.org/3054"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-5"},"description":{"xml:lang":"en","type":"literal","value":"Philoxenus had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-5"},"description":{"xml:lang":"en","type":"literal","value":"Philoxenus had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-5"},"description":{"xml:lang":"en","type":"literal","value":"Philoxenus had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/3056"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/3056"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-11"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-11"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-11"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-15"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymous 3083."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-15"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymous 3083."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-15"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymous 3083."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus was bishop over Eusebius and Victor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus was bishop over Eusebius and Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus was bishop over Eusebius and Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-7"},"description":{"xml:lang":"en","type":"literal","value":"John of Alexandria Minor had ecclesiastical authority over Anonymi 3085."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-7"},"description":{"xml:lang":"en","type":"literal","value":"John of Alexandria Minor had ecclesiastical authority over Anonymi 3085."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-7"},"description":{"xml:lang":"en","type":"literal","value":"John of Alexandria Minor had ecclesiastical authority over Anonymi 3085."},"source":{"type":"uri","value":"https://spear-prosop.org/3062"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-5"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over Maximus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-5"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over Maximus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-5"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over Maximus."},"source":{"type":"uri","value":"https://spear-prosop.org/3066"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3090."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3090."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3090."},"source":{"type":"uri","value":"https://spear-prosop.org/3068"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-21"},"description":{"xml:lang":"en","type":"literal","value":"Peter the Iberian had ecclesiastical authority over Timothy and Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-21"},"description":{"xml:lang":"en","type":"literal","value":"Peter the Iberian had ecclesiastical authority over Timothy and Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-21"},"description":{"xml:lang":"en","type":"literal","value":"Peter the Iberian had ecclesiastical authority over Timothy and Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-8"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Anonymous 3092."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-8"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Anonymous 3092."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-8"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Anonymous 3092."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/3072"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-8"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-8"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-8"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/3075"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-13"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-13"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-13"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/3076"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-13"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Anonymous 3740"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-13"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Anonymous 3740"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-13"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Anonymous 3740"},"source":{"type":"uri","value":"https://spear-prosop.org/3083"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/3084"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3742 had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3742 had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3742 had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-8"},"description":{"xml:lang":"en","type":"literal","value":"Stephen had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-8"},"description":{"xml:lang":"en","type":"literal","value":"Stephen had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-8"},"description":{"xml:lang":"en","type":"literal","value":"Stephen had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3086"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/3087"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Victor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Philip."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/3106"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-47"},"description":{"xml:lang":"en","type":"literal","value":"Stephen was a bishop with authority over Anonymi 3746"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-47"},"description":{"xml:lang":"en","type":"literal","value":"Stephen was a bishop with authority over Anonymi 3746"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-47"},"description":{"xml:lang":"en","type":"literal","value":"Stephen was a bishop with authority over Anonymi 3746"},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 had ecclesiastical authority over Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 had ecclesiastical authority over Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 had ecclesiastical authority over Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-5"},"description":{"xml:lang":"en","type":"literal","value":"Isidore was bishop with authority over Silvanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-5"},"description":{"xml:lang":"en","type":"literal","value":"Isidore was bishop with authority over Silvanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-5"},"description":{"xml:lang":"en","type":"literal","value":"Isidore was bishop with authority over Silvanus."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-42"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-42"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-42"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-8"},"description":{"xml:lang":"en","type":"literal","value":"Didymus had ecclesiastical authority over Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-8"},"description":{"xml:lang":"en","type":"literal","value":"Didymus had ecclesiastical authority over Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-8"},"description":{"xml:lang":"en","type":"literal","value":"Didymus had ecclesiastical authority over Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/3119"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-112"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-112"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-112"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-34"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-34"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-34"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-395"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 2235 had ecclesiastical authority over Anonymi 2218."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-395"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 2235 had ecclesiastical authority over Anonymi 2218."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-395"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 2235 had ecclesiastical authority over Anonymi 2218."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-97"},"description":{"xml:lang":"en","type":"literal","value":"Abraham had ecclesiastical authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-97"},"description":{"xml:lang":"en","type":"literal","value":"Abraham had ecclesiastical authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-97"},"description":{"xml:lang":"en","type":"literal","value":"Abraham had ecclesiastical authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-32"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-32"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-32"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3637 had ecclesiastical authority over Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3637 had ecclesiastical authority over Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3637 had ecclesiastical authority over Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus had ecclesiastical authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus had ecclesiastical authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus had ecclesiastical authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/845"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-474"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius had ecclesiastical authority over Anonymi 2221."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-474"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius had ecclesiastical authority over Anonymi 2221."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-474"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius had ecclesiastical authority over Anonymi 2221."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3030"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-16"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-16"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-16"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-21"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-21"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-21"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3063."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3063."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3063."},"source":{"type":"uri","value":"https://spear-prosop.org/3045"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3079."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3079."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3079."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-12"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Aurelius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-12"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Aurelius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-12"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Aurelius."},"source":{"type":"uri","value":"https://spear-prosop.org/3076"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Eutychian"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Eutychian"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Eutychian"},"source":{"type":"uri","value":"https://spear-prosop.org/3083"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-6"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was bishop with authority over Anonymous 3783."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-6"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was bishop with authority over Anonymous 3783."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-6"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was bishop with authority over Anonymous 3783."},"source":{"type":"uri","value":"https://spear-prosop.org/3090"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-8"},"description":{"xml:lang":"en","type":"literal","value":"Eucharius had ecclesiastical authority over Firminus and Anonymi 3101."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-8"},"description":{"xml:lang":"en","type":"literal","value":"Eucharius had ecclesiastical authority over Firminus and Anonymi 3101."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-8"},"description":{"xml:lang":"en","type":"literal","value":"Eucharius had ecclesiastical authority over Firminus and Anonymi 3101."},"source":{"type":"uri","value":"https://spear-prosop.org/3094"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-96"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Zota."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-96"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-96"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-11"},"description":{"xml:lang":"en","type":"literal","value":"The party of Hilarian and Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-11"},"description":{"xml:lang":"en","type":"literal","value":"The party of Hilarian and Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-11"},"description":{"xml:lang":"en","type":"literal","value":"The party of Hilarian and Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-41"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Hilarian brought legal charges or a petition against Eustace."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-41"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Hilarian brought legal charges or a petition against Eustace."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-41"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Hilarian brought legal charges or a petition against Eustace."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-23"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-23"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-23"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-22"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-22"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-22"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3050 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3050 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3050 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3051 brought legal charges or a petition against Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3051 brought legal charges or a petition against Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3051 brought legal charges or a petition against Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3046 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3046 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3046 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-16"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-16"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-16"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-10"},"description":{"xml:lang":"en","type":"literal","value":"Peter brought legal charges or a petition against Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-10"},"description":{"xml:lang":"en","type":"literal","value":"Peter brought legal charges or a petition against Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-10"},"description":{"xml:lang":"en","type":"literal","value":"Peter brought legal charges or a petition against Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3727 brought legal charges or a petition against Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3727 brought legal charges or a petition against Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3727 brought legal charges or a petition against Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-9"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Anonymi 3727."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-9"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Anonymi 3727."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-9"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Anonymi 3727."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-5"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Hilarian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-5"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Hilarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-5"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Hilarian."},"source":{"type":"uri","value":"https://spear-prosop.org/3055"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/3062"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 brought legal charges or a petition against Libanius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 brought legal charges or a petition against Libanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 brought legal charges or a petition against Libanius."},"source":{"type":"uri","value":"https://spear-prosop.org/3070"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3734 brought legal charges or a petition against Julian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3734 brought legal charges or a petition against Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3734 brought legal charges or a petition against Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3737 brought legal charges or a petition against Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3737 brought legal charges or a petition against Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3737 brought legal charges or a petition against Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-13"},"description":{"xml:lang":"en","type":"literal","value":"Stephen brought legal charges or a petition against Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-13"},"description":{"xml:lang":"en","type":"literal","value":"Stephen brought legal charges or a petition against Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-13"},"description":{"xml:lang":"en","type":"literal","value":"Stephen brought legal charges or a petition against Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3101 brought legal charges or a petition against Firminus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3101 brought legal charges or a petition against Firminus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3101 brought legal charges or a petition against Firminus."},"source":{"type":"uri","value":"https://spear-prosop.org/3094"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-27"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-27"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-27"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-5"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-5"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-5"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-9"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-9"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-9"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-10"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-10"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-10"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/3060"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3068"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3070"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/3077"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-21"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter from Severus of Antioch to Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-21"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter from Severus of Antioch to Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-21"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter from Severus of Antioch to Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-6"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-6"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-6"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-9"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-9"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-9"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-28"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-28"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-28"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-14"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-14"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-14"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/3060"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3068"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3070"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-27"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-27"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-27"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/3077"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-24"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter between Severus of Antioch and Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-24"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter between Severus of Antioch and Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-24"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter between Severus of Antioch and Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-7"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-7"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-7"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-55"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-55"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-55"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-52"},"description":{"xml:lang":"en","type":"literal","value":"A messenger came bearing a letter for Maria about the death of Mary."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-52"},"description":{"xml:lang":"en","type":"literal","value":"A messenger came bearing a letter for Maria about the death of Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-52"},"description":{"xml:lang":"en","type":"literal","value":"A messenger came bearing a letter for Maria about the death of Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-11"},"description":{"xml:lang":"en","type":"literal","value":"Daniel was the child of the sibling of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-11"},"description":{"xml:lang":"en","type":"literal","value":"Daniel was the child of the sibling of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-11"},"description":{"xml:lang":"en","type":"literal","value":"Daniel was the child of the sibling of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/831"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-26"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of the sister of Justinian"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-26"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of the sister of Justinian"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-26"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of the sister of Justinian"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-234"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of a sibling of Ephrem."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-234"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of a sibling of Ephrem."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-234"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of a sibling of Ephrem."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-45"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Matronian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-45"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Matronian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-45"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Matronian."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasius was the child of Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasius was the child of Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasius was the child of Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/3078"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-18"},"description":{"xml:lang":"en","type":"literal","value":"Alypius was the child of Mitras."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-18"},"description":{"xml:lang":"en","type":"literal","value":"Alypius was the child of Mitras."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-18"},"description":{"xml:lang":"en","type":"literal","value":"Alypius was the child of Mitras."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-22"},"description":{"xml:lang":"en","type":"literal","value":"Mitras was the child of Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-22"},"description":{"xml:lang":"en","type":"literal","value":"Mitras was the child of Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-22"},"description":{"xml:lang":"en","type":"literal","value":"Mitras was the child of Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-64"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 were the children of Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-64"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 were the children of Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-64"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 were the children of Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3728 was the child of Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3728 was the child of Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3728 was the child of Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/3114"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-7"},"description":{"xml:lang":"en","type":"literal","value":"Georgia was the child of Anastasia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-7"},"description":{"xml:lang":"en","type":"literal","value":"Georgia was the child of Anastasia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-7"},"description":{"xml:lang":"en","type":"literal","value":"Georgia was the child of Anastasia."},"source":{"type":"uri","value":"https://spear-prosop.org/3127"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-2"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Ammian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-2"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Ammian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-2"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Ammian."},"source":{"type":"uri","value":"https://spear-prosop.org/3135"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3787 was the daughter of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3787 was the daughter of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3787 was the daughter of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/3217"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-4"},"description":{"xml:lang":"en","type":"literal","value":"Paul was the son of Vivian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-4"},"description":{"xml:lang":"en","type":"literal","value":"Paul was the son of Vivian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-4"},"description":{"xml:lang":"en","type":"literal","value":"Paul was the son of Vivian."},"source":{"type":"uri","value":"https://spear-prosop.org/3242"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-44"},"description":{"xml:lang":"en","type":"literal","value":"Maro was the child of Anonymous 3627 and Anonymous 3628."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-44"},"description":{"xml:lang":"en","type":"literal","value":"Maro was the child of Anonymous 3627 and Anonymous 3628."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-44"},"description":{"xml:lang":"en","type":"literal","value":"Maro was the child of Anonymous 3627 and Anonymous 3628."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-25"},"description":{"xml:lang":"en","type":"literal","value":"Maria was the child of Anonymi 3610 and Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-25"},"description":{"xml:lang":"en","type":"literal","value":"Maria was the child of Anonymi 3610 and Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-25"},"description":{"xml:lang":"en","type":"literal","value":"Maria was the child of Anonymi 3610 and Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-4"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian was the child of Šnq."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-4"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian was the child of Šnq."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-4"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian was the child of Šnq."},"source":{"type":"uri","value":"https://spear-prosop.org/813"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-7"},"description":{"xml:lang":"en","type":"literal","value":"Zwtʾ was the child of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-7"},"description":{"xml:lang":"en","type":"literal","value":"Zwtʾ was the child of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-7"},"description":{"xml:lang":"en","type":"literal","value":"Zwtʾ was the child of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/831"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3692 was the child of Isaac and Anonymous 3690."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3692 was the child of Isaac and Anonymous 3690."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3692 was the child of Isaac and Anonymous 3690."},"source":{"type":"uri","value":"https://spear-prosop.org/836"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-29"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of Vigilantia"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-29"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of Vigilantia"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-29"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of Vigilantia"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-10"},"description":{"xml:lang":"en","type":"literal","value":"Abgar VIII was the child of Maʿnu."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-10"},"description":{"xml:lang":"en","type":"literal","value":"Abgar VIII was the child of Maʿnu."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-10"},"description":{"xml:lang":"en","type":"literal","value":"Abgar VIII was the child of Maʿnu."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-114"},"description":{"xml:lang":"en","type":"literal","value":"Constantius II was the child of Constantine the Great."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-114"},"description":{"xml:lang":"en","type":"literal","value":"Constantius II was the child of Constantine the Great."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-114"},"description":{"xml:lang":"en","type":"literal","value":"Constantius II was the child of Constantine the Great."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-233"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of Anonmyous 2234."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-233"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of Anonmyous 2234."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-233"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of Anonmyous 2234."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Irenaeus of Lyon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Irenaeus of Lyon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Irenaeus of Lyon."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theodoret."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theodoret."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theodoret."},"source":{"type":"uri","value":"https://spear-prosop.org/3159"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Sabellius the Libyan."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Sabellius the Libyan."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Sabellius the Libyan."},"source":{"type":"uri","value":"https://spear-prosop.org/3169"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Hiba."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Hiba."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Hiba."},"source":{"type":"uri","value":"https://spear-prosop.org/3176"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3005"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3009"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3021"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter by Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter by Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter by Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/3021"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3022"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3027"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3027"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory the Theologian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory the Theologian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory the Theologian."},"source":{"type":"uri","value":"https://spear-prosop.org/3078"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3080-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3080-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3080-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3080"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyprian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyprian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyprian."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Socrates."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Socrates."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Socrates."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Dionysius of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Dionysius of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Dionysius of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3095"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3095"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3095"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3101"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3101"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3103"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3103"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy Aelurus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy Aelurus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy Aelurus."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3113"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3113"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3120"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3120"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3122"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3123"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3131"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3131"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/3131"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3135"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3139"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3145"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3145"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3154"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/3154"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3159"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3159"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3160"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3160"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3161"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3162"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3163"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3172"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3174"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3174"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3174"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3174"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3183"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3183"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/3196"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3197"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3209"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3221"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/3221"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3221"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3223"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3225"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3226"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/3226"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3235"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3235"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-27"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-27"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-27"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-14"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Anonymous 3033 referenced Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-14"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Anonymous 3033 referenced Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-14"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Anonymous 3033 referenced Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/3013"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-24"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-24"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-24"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-55"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-55"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-55"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-7"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-7"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-7"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/3033"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-21"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-21"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-21"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-12"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-12"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-12"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-26"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-26"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-26"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-11"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-11"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-11"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/3042"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus."},"source":{"type":"uri","value":"https://spear-prosop.org/3056"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-5"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Antipater referenced Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-5"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Antipater referenced Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-5"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Antipater referenced Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-18"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-18"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-18"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 refered to the writings of Anonymous 3082."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 refered to the writings of Anonymous 3082."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 refered to the writings of Anonymous 3082."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3086"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3086"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3086"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-34"},"description":{"xml:lang":"en","type":"literal","value":"A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-34"},"description":{"xml:lang":"en","type":"literal","value":"A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-34"},"description":{"xml:lang":"en","type":"literal","value":"A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Dionysios referenced Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Dionysios referenced Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Dionysios referenced Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/3114"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3120"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3122"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-42"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-42"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-42"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3136"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius."},"source":{"type":"uri","value":"https://spear-prosop.org/3148"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Basil."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/3152"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Pope Leo."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Pope Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Pope Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/3176"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-20"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius had military command over Heliodorus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/command-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-20"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius had military command over Heliodorus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/command-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-20"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius had military command over Heliodorus."},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/command-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-21"},"description":{"xml:lang":"en","type":"literal","value":"Procopius commemorated Lampetius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-21"},"description":{"xml:lang":"en","type":"literal","value":"Procopius commemorated Lampetius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-21"},"description":{"xml:lang":"en","type":"literal","value":"Procopius commemorated Lampetius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus reluctantly permitted the commemoration of Epiphanius of Magydum."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus reluctantly permitted the commemoration of Epiphanius of Magydum."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus reluctantly permitted the commemoration of Epiphanius of Magydum."},"source":{"type":"uri","value":"https://spear-prosop.org/3093"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-4"},"description":{"xml:lang":"en","type":"literal","value":"John and John commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-4"},"description":{"xml:lang":"en","type":"literal","value":"John and John commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-4"},"description":{"xml:lang":"en","type":"literal","value":"John and John commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-7"},"description":{"xml:lang":"en","type":"literal","value":"John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-7"},"description":{"xml:lang":"en","type":"literal","value":"John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-7"},"description":{"xml:lang":"en","type":"literal","value":"John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch commemorated Dioscorus I."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch commemorated Dioscorus I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch commemorated Dioscorus I."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3750 commemorated Patrick"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3750 commemorated Patrick"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3750 commemorated Patrick"},"source":{"type":"uri","value":"https://spear-prosop.org/3148"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Habib."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/793"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/795"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-75"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-75"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-75"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-76"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Maro."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-76"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Maro."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-76"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Maro."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/798-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/798-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/798-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/798"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/799"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/800-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/800-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/800-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/800"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/801-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/801-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/801-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/801"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later."},"source":{"type":"uri","value":"https://spear-prosop.org/803"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-116"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-116"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-116"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-117"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-117"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-117"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-118"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zota."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-118"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-118"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abbi."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abbi."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abbi."},"source":{"type":"uri","value":"https://spear-prosop.org/806"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James ."},"source":{"type":"uri","value":"https://spear-prosop.org/807"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3760."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3760."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3760."},"source":{"type":"uri","value":"https://spear-prosop.org/807"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/808"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/809-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the poor man."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/809-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the poor man."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/809-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the poor man."},"source":{"type":"uri","value":"https://spear-prosop.org/809"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/810-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated a monk who left the monastery ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/810-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated a monk who left the monastery ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/810-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated a monk who left the monastery ."},"source":{"type":"uri","value":"https://spear-prosop.org/810"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zacharias as a holy person."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zacharias as a holy person."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zacharias as a holy person."},"source":{"type":"uri","value":"https://spear-prosop.org/811"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3762."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3762."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3762."},"source":{"type":"uri","value":"https://spear-prosop.org/812"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/813"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/814"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/814"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/815-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/815-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/815-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/815"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/816-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/816-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/816-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/816"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/817-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/817-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/817-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/817"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/818"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Susan."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Susan."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Susan."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/820"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/821-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Malkha."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/821-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Malkha."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/821-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Malkha."},"source":{"type":"uri","value":"https://spear-prosop.org/821"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/822-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/822-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/822-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/822"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/823"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/823"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3718."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3718."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3718."},"source":{"type":"uri","value":"https://spear-prosop.org/824"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/826-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/826-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/826-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/826"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/827-17"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the Monks of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/827-17"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the Monks of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/827-17"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the Monks of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/827"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/828"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/829-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Aaron."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/829-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Aaron."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/829-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Aaron."},"source":{"type":"uri","value":"https://spear-prosop.org/829"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/830"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham ."},"source":{"type":"uri","value":"https://spear-prosop.org/831"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/832"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Bassian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Bassian."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Bassian."},"source":{"type":"uri","value":"https://spear-prosop.org/832"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/832"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Daniel."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Daniel."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Daniel."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-21"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-21"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-21"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mari ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mari ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mari ."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-36"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-36"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-36"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/834"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-37"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Cyriacus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-37"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Cyriacus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-37"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Cyriacus."},"source":{"type":"uri","value":"https://spear-prosop.org/834"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-38"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-38"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-38"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/834"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-39"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Barhadbshabba."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-39"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Barhadbshabba."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-39"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Barhadbshabba."},"source":{"type":"uri","value":"https://spear-prosop.org/834"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-13"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Isaac ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-13"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Isaac ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-13"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Isaac ."},"source":{"type":"uri","value":"https://spear-prosop.org/836"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/837-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/837-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/837-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/837"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/838-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemmorated Anonymi 3771"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/838-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemmorated Anonymi 3771"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/838-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemmorated Anonymi 3771"},"source":{"type":"uri","value":"https://spear-prosop.org/838"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-40"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodosius"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-40"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodosius"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-40"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodosius"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-41"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anthimus"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-41"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anthimus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-41"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anthimus"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-42"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-42"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-42"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-43"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Severus"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-43"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Severus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-43"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Severus"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-44"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-44"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-44"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul"},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-15"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-15"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-15"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James."},"source":{"type":"uri","value":"https://spear-prosop.org/840"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Jacob Baradaeus"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Jacob Baradaeus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Jacob Baradaeus"},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore of Hirtha"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore of Hirtha"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore of Hirtha"},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-11"},"description":{"xml:lang":"en","type":"literal","value":"After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-11"},"description":{"xml:lang":"en","type":"literal","value":"After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-11"},"description":{"xml:lang":"en","type":"literal","value":"After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave."},"source":{"type":"uri","value":"https://spear-prosop.org/842"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Kashish."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Kashish."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Kashish."},"source":{"type":"uri","value":"https://spear-prosop.org/842"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-26"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-26"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-26"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/843"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-28"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theophilos."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-28"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theophilos."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-28"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theophilos."},"source":{"type":"uri","value":"https://spear-prosop.org/843"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Priscus ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Priscus ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Priscus ."},"source":{"type":"uri","value":"https://spear-prosop.org/844"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/845"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sosiana ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sosiana ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sosiana ."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John ."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-25"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Peter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-25"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-25"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/847"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Photius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Photius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Photius."},"source":{"type":"uri","value":"https://spear-prosop.org/847"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-1/"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-1/"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-1/"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-3"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus communed with Castor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-3"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus communed with Castor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-3"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus communed with Castor."},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-27"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Anonymi 3065 shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-27"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Anonymi 3065 shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-27"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Anonymi 3065 shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-22"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3781 communed together."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-22"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3781 communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-22"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3781 communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-4"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius and Indacus communed together."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-4"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius and Indacus communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-4"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius and Indacus communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/3091"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-16"},"description":{"xml:lang":"en","type":"literal","value":"Peter Mongus and Julian communed together."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-16"},"description":{"xml:lang":"en","type":"literal","value":"Peter Mongus and Julian communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-16"},"description":{"xml:lang":"en","type":"literal","value":"Peter Mongus and Julian communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Timothy shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Timothy shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Timothy shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3127 and Anonymous 3128 were cousins."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cousin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3127 and Anonymous 3128 were cousins."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cousin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3127 and Anonymous 3128 were cousins."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cousin-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-65"},"description":{"xml:lang":"en","type":"literal","value":"Thomas descended from Ishakuni Bar Brʿy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/descendent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-65"},"description":{"xml:lang":"en","type":"literal","value":"Thomas descended from Ishakuni Bar Brʿy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/descendent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-65"},"description":{"xml:lang":"en","type":"literal","value":"Thomas descended from Ishakuni Bar Brʿy."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/descendent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-109"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-109"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-109"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-110"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-110"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-110"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-28"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-28"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-28"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Leo."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-33"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3130."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-33"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3130."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-33"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3130."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/3009"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 had enmity for Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 had enmity for Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 had enmity for Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Isidore as unphilosophic and deceitful."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Isidore as unphilosophic and deceitful."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Isidore as unphilosophic and deceitful."},"source":{"type":"uri","value":"https://spear-prosop.org/3019"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3034 had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3034 had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3034 had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-19"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-19"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-19"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/3021"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Bisula."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Bisula."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Bisula."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-21"},"description":{"xml:lang":"en","type":"literal","value":"Musonius had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-21"},"description":{"xml:lang":"en","type":"literal","value":"Musonius had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-21"},"description":{"xml:lang":"en","type":"literal","value":"Musonius had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Anonymous 3778 as a beast of burden and a pack-ass."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Anonymous 3778 as a beast of burden and a pack-ass."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Anonymous 3778 as a beast of burden and a pack-ass."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-35"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3052 had enmity for Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-35"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3052 had enmity for Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-35"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3052 had enmity for Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/3039"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3054."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3054."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3054."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-7"},"description":{"xml:lang":"en","type":"literal","value":"Aegilas had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-7"},"description":{"xml:lang":"en","type":"literal","value":"Aegilas had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-7"},"description":{"xml:lang":"en","type":"literal","value":"Aegilas had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3042"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-12"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had enmity for Anonymi 3059."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-12"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had enmity for Anonymi 3059."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-12"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had enmity for Anonymi 3059."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-17"},"description":{"xml:lang":"en","type":"literal","value":"Paul had enmity for Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-17"},"description":{"xml:lang":"en","type":"literal","value":"Paul had enmity for Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-17"},"description":{"xml:lang":"en","type":"literal","value":"Paul had enmity for Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-24"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-24"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-24"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3071."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3071."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3071."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Martyrius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Martyrius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Martyrius."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3076."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3076."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3076."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah the Armenian and Anonymous 3780."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah the Armenian and Anonymous 3780."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah the Armenian and Anonymous 3780."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Anonymous 3781."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Anonymous 3781."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Anonymous 3781."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus urged Theotecnus to condemn Romanus in a synodical letter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus urged Theotecnus to condemn Romanus in a synodical letter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus urged Theotecnus to condemn Romanus in a synodical letter."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3086."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3086."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3086."},"source":{"type":"uri","value":"https://spear-prosop.org/3065"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/3072"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Julian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/3075"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/3075"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/3087"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Origen to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Origen to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Origen to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Eusebius of Caesarea to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Eusebius of Caesarea to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Eusebius of Caesarea to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-30"},"description":{"xml:lang":"en","type":"literal","value":"Cyril wrote against Theodore of Mopsuestia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-30"},"description":{"xml:lang":"en","type":"literal","value":"Cyril wrote against Theodore of Mopsuestia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-30"},"description":{"xml:lang":"en","type":"literal","value":"Cyril wrote against Theodore of Mopsuestia."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3092"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-36"},"description":{"xml:lang":"en","type":"literal","value":"Liberius had enmity for Constantius II."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-36"},"description":{"xml:lang":"en","type":"literal","value":"Liberius had enmity for Constantius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-36"},"description":{"xml:lang":"en","type":"literal","value":"Liberius had enmity for Constantius II."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus called Anatolius a false prophet."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus called Anatolius a false prophet."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus called Anatolius a false prophet."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Sergius, Diodore, Theodore, and Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Sergius, Diodore, Theodore, and Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Sergius, Diodore, Theodore, and Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-22"},"description":{"xml:lang":"en","type":"literal","value":"Leontius anathematized Isaiah"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-22"},"description":{"xml:lang":"en","type":"literal","value":"Leontius anathematized Isaiah"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-22"},"description":{"xml:lang":"en","type":"literal","value":"Leontius anathematized Isaiah"},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3115 had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3115 had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3115 had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/3121"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Cyriac."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Cyriac."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Cyriac."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Flavian of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Flavian of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Flavian of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Proterius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Proterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Proterius."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Theodotus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Theodotus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Theodotus."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3122."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3122."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3122."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-37"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Podalirius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-37"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Podalirius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-37"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Podalirius."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-45"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-45"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-45"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Gaian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Gaian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Gaian."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 had enmity for Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 had enmity for Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 had enmity for Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-26"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana had enmity for Anonymous 3751."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-26"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana had enmity for Anonymous 3751."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-26"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana had enmity for Anonymous 3751."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-33"},"description":{"xml:lang":"en","type":"literal","value":"Joseph expressed enmity for John"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-33"},"description":{"xml:lang":"en","type":"literal","value":"Joseph expressed enmity for John"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-33"},"description":{"xml:lang":"en","type":"literal","value":"Joseph expressed enmity for John"},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus expressed enmity for John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus expressed enmity for John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus expressed enmity for John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/3195"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/3195"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/3242"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-52"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora had enmity for Agapetus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-52"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora had enmity for Agapetus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-52"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora had enmity for Agapetus."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-19"},"description":{"xml:lang":"en","type":"literal","value":"Sergius had enmity for Anonymi 3686."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-19"},"description":{"xml:lang":"en","type":"literal","value":"Sergius had enmity for Anonymi 3686."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-19"},"description":{"xml:lang":"en","type":"literal","value":"Sergius had enmity for Anonymi 3686."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-49"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 had enmity for Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-49"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 had enmity for Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-49"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 had enmity for Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-42"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had enmity for Hiba of Edessa."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-42"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had enmity for Hiba of Edessa."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-42"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had enmity for Hiba of Edessa."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-29"},"description":{"xml:lang":"en","type":"literal","value":"John had enmity for Thomas the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-29"},"description":{"xml:lang":"en","type":"literal","value":"John had enmity for Thomas the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-29"},"description":{"xml:lang":"en","type":"literal","value":"John had enmity for Thomas the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/813"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-159"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2211 had enmity for Anonymi 2208."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-159"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2211 had enmity for Anonymi 2208."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-159"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2211 had enmity for Anonymi 2208."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-314"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-314"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-314"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-25"},"description":{"xml:lang":"en","type":"literal","value":"Timothy and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-25"},"description":{"xml:lang":"en","type":"literal","value":"Timothy and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-25"},"description":{"xml:lang":"en","type":"literal","value":"Timothy and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-11"},"description":{"xml:lang":"en","type":"literal","value":"Libanius and Eusebius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-11"},"description":{"xml:lang":"en","type":"literal","value":"Libanius and Eusebius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-11"},"description":{"xml:lang":"en","type":"literal","value":"Libanius and Eusebius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3070"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3741, Stephen and Leontius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3741, Stephen and Leontius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3741, Stephen and Leontius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-11"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and John were clergy together."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-11"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and John were clergy together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-11"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and John were clergy together."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-31"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymi 3642 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-31"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymi 3642 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-31"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymi 3642 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-15"},"description":{"xml:lang":"en","type":"literal","value":"John the Nazarite and Anonymous 3679 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-15"},"description":{"xml:lang":"en","type":"literal","value":"John the Nazarite and Anonymous 3679 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-15"},"description":{"xml:lang":"en","type":"literal","value":"John the Nazarite and Anonymous 3679 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/795"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/818"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-72"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3665 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-72"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3665 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-72"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3665 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/840"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-6"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Jacob Baradaeus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-6"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Jacob Baradaeus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-6"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Jacob Baradaeus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/840"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-13"},"description":{"xml:lang":"en","type":"literal","value":"Eugene and Conon were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-13"},"description":{"xml:lang":"en","type":"literal","value":"Eugene and Conon were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-13"},"description":{"xml:lang":"en","type":"literal","value":"Eugene and Conon were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-16"},"description":{"xml:lang":"en","type":"literal","value":"Qashish and John of Ephesus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-16"},"description":{"xml:lang":"en","type":"literal","value":"Qashish and John of Ephesus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-16"},"description":{"xml:lang":"en","type":"literal","value":"Qashish and John of Ephesus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/842"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-36"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan and Samuel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-36"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan and Samuel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-36"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan and Samuel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-43"},"description":{"xml:lang":"en","type":"literal","value":"Samuel, Jonathan and Anonymous 3669 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-43"},"description":{"xml:lang":"en","type":"literal","value":"Samuel, Jonathan and Anonymous 3669 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-43"},"description":{"xml:lang":"en","type":"literal","value":"Samuel, Jonathan and Anonymous 3669 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-39"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Leontius were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-39"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Leontius were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-39"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Leontius were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-10"},"description":{"xml:lang":"en","type":"literal","value":"Photius and Andrew were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-10"},"description":{"xml:lang":"en","type":"literal","value":"Photius and Andrew were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-10"},"description":{"xml:lang":"en","type":"literal","value":"Photius and Andrew were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-19"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-19"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-19"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/3138"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-10"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymous 3635 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-10"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymous 3635 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-10"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymous 3635 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-5"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3648 and Abraham the Recluse were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-5"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3648 and Abraham the Recluse were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-5"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3648 and Abraham the Recluse were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/799"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-4"},"description":{"xml:lang":"en","type":"literal","value":"Abi and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-4"},"description":{"xml:lang":"en","type":"literal","value":"Abi and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-4"},"description":{"xml:lang":"en","type":"literal","value":"Abi and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/806"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-7"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and Anonymi 3772 were monastics residing in the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-7"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and Anonymi 3772 were monastics residing in the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-7"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and Anonymi 3772 were monastics residing in the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/811"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-29"},"description":{"xml:lang":"en","type":"literal","value":"Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-29"},"description":{"xml:lang":"en","type":"literal","value":"Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-29"},"description":{"xml:lang":"en","type":"literal","value":"Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-42"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3662 and Suzanna were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-42"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3662 and Suzanna were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-42"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3662 and Suzanna were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-15"},"description":{"xml:lang":"en","type":"literal","value":"Leontius, Aaron and Qashish were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-15"},"description":{"xml:lang":"en","type":"literal","value":"Leontius, Aaron and Qashish were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-15"},"description":{"xml:lang":"en","type":"literal","value":"Leontius, Aaron and Qashish were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/830"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-12"},"description":{"xml:lang":"en","type":"literal","value":"Mari and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-12"},"description":{"xml:lang":"en","type":"literal","value":"Mari and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-12"},"description":{"xml:lang":"en","type":"literal","value":"Mari and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-16"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Daniel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-16"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Daniel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-16"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Daniel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-50"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Qashish were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-50"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Qashish were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-50"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Qashish were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-9"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Photius and Anonymi 3693 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-9"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Photius and Anonymi 3693 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-9"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Photius and Anonymi 3693 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/847"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-65"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-65"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-65"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-70"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-70"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-70"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 was a follower of Arius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 was a follower of Arius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 was a follower of Arius."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-24"},"description":{"xml:lang":"en","type":"literal","value":"Lampetius was a follower of Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-24"},"description":{"xml:lang":"en","type":"literal","value":"Lampetius was a follower of Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-24"},"description":{"xml:lang":"en","type":"literal","value":"Lampetius was a follower of Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3780 was a follower of Isaiah the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3780 was a follower of Isaiah the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3780 was a follower of Isaiah the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-27"},"description":{"xml:lang":"en","type":"literal","value":"Cassian was a follower of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-27"},"description":{"xml:lang":"en","type":"literal","value":"Cassian was a follower of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-27"},"description":{"xml:lang":"en","type":"literal","value":"Cassian was a follower of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-29"},"description":{"xml:lang":"en","type":"literal","value":"Theodotus was a follower of John the Rhetor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-29"},"description":{"xml:lang":"en","type":"literal","value":"Theodotus was a follower of John the Rhetor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-29"},"description":{"xml:lang":"en","type":"literal","value":"Theodotus was a follower of John the Rhetor."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-40"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-40"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-40"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-46"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was an alledged follower of Montanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-46"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was an alledged follower of Montanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-46"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was an alledged follower of Montanus."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-50"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was a follower of Mani."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-50"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was a follower of Mani."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-50"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was a follower of Mani."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-21"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Timothy II of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-21"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Timothy II of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-21"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Timothy II of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-10"},"description":{"xml:lang":"en","type":"literal","value":"Bar Nbyl was a follower of Mara Dada ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-10"},"description":{"xml:lang":"en","type":"literal","value":"Bar Nbyl was a follower of Mara Dada ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-10"},"description":{"xml:lang":"en","type":"literal","value":"Bar Nbyl was a follower of Mara Dada ."},"source":{"type":"uri","value":"https://spear-prosop.org/793"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-21"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-21"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-21"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/793"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-31"},"description":{"xml:lang":"en","type":"literal","value":"Hananyaʾ was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-31"},"description":{"xml:lang":"en","type":"literal","value":"Hananyaʾ was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-31"},"description":{"xml:lang":"en","type":"literal","value":"Hananyaʾ was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/793"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-4"},"description":{"xml:lang":"en","type":"literal","value":"Habib was a follower of Bar Nbyl ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-4"},"description":{"xml:lang":"en","type":"literal","value":"Habib was a follower of Bar Nbyl ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-4"},"description":{"xml:lang":"en","type":"literal","value":"Habib was a follower of Bar Nbyl ."},"source":{"type":"uri","value":"https://spear-prosop.org/793"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3716 were followers of Anonymous 3717."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3716 were followers of Anonymous 3717."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3716 were followers of Anonymous 3717."},"source":{"type":"uri","value":"https://spear-prosop.org/824"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-22"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was a follower of Mishael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-22"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was a follower of Mishael."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-22"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was a follower of Mishael."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-34"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Oecumenius, comes had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-34"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Oecumenius, comes had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-34"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Oecumenius, comes had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-56"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and John had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-56"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and John had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-56"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and John had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-57"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Sergius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-57"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Sergius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-57"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Sergius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-58"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Peter had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-58"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Peter had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-58"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Peter had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-59"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Maximin had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-59"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Maximin had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-59"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Maximin had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-13"},"description":{"xml:lang":"en","type":"literal","value":"Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-13"},"description":{"xml:lang":"en","type":"literal","value":"Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-13"},"description":{"xml:lang":"en","type":"literal","value":"Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/3045"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-24"},"description":{"xml:lang":"en","type":"literal","value":"Alexander, Musonius and Martyrius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-24"},"description":{"xml:lang":"en","type":"literal","value":"Alexander, Musonius and Martyrius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-24"},"description":{"xml:lang":"en","type":"literal","value":"Alexander, Musonius and Martyrius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-8"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Alexander had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-8"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Alexander had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-8"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Alexander had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-44"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Isidore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-44"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Isidore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-44"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Isidore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Epimachus had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Epimachus had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Epimachus had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-62"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Eusebius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-62"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Eusebius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-62"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Eusebius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Theotecnus had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Theotecnus had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Theotecnus had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-13"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus and Thecla had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-13"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus and Thecla had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-13"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus and Thecla had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anastasia expressed deep affection for one another in their letters."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anastasia expressed deep affection for one another in their letters."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anastasia expressed deep affection for one another in their letters."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-6"},"description":{"xml:lang":"en","type":"literal","value":"Misael and Severus of Antioch had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-6"},"description":{"xml:lang":"en","type":"literal","value":"Misael and Severus of Antioch had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-6"},"description":{"xml:lang":"en","type":"literal","value":"Misael and Severus of Antioch had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3136"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-20"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-20"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-20"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3138"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Sergius bar Fathya had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Sergius bar Fathya had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Sergius bar Fathya had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Zechariah Rhetor were friends."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Zechariah Rhetor were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Zechariah Rhetor were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains."},"source":{"type":"uri","value":"https://spear-prosop.org/803"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-48"},"description":{"xml:lang":"en","type":"literal","value":"Euphemia and Anonymous 3615 were friends."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-48"},"description":{"xml:lang":"en","type":"literal","value":"Euphemia and Anonymous 3615 were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-48"},"description":{"xml:lang":"en","type":"literal","value":"Euphemia and Anonymous 3615 were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3760 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3760 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3760 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/807"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-4"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and John of Ephesus had a close friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-4"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and John of Ephesus had a close friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-4"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and John of Ephesus had a close friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/811"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3762 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3762 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3762 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/812"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-21"},"description":{"xml:lang":"en","type":"literal","value":"Leontius and Aaron had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-21"},"description":{"xml:lang":"en","type":"literal","value":"Leontius and Aaron had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-21"},"description":{"xml:lang":"en","type":"literal","value":"Leontius and Aaron had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/830"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-24"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-24"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-24"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3102 was the grandparent of Alypius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/grandparent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3102 was the grandparent of Alypius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/grandparent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3102 was the grandparent of Alypius."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/grandparent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 held Anonymi 3633 as a house slave."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/house-slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 held Anonymi 3633 as a house slave."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/house-slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 held Anonymi 3633 as a house slave."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/house-slave-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-75"},"description":{"xml:lang":"en","type":"literal","value":"Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-75"},"description":{"xml:lang":"en","type":"literal","value":"Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-75"},"description":{"xml:lang":"en","type":"literal","value":"Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-48"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Justinian I and Theodora, Roman empress were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-48"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Justinian I and Theodora, Roman empress were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-48"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Justinian I and Theodora, Roman empress were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Philip."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/3039"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3078 heard a legal case against Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3078 heard a legal case against Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3078 heard a legal case against Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-17"},"description":{"xml:lang":"en","type":"literal","value":"The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-17"},"description":{"xml:lang":"en","type":"literal","value":"The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-17"},"description":{"xml:lang":"en","type":"literal","value":"The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/3084"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-2"},"description":{"xml:lang":"en","type":"literal","value":"Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-2"},"description":{"xml:lang":"en","type":"literal","value":"Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-2"},"description":{"xml:lang":"en","type":"literal","value":"Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/3093"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-9"},"description":{"xml:lang":"en","type":"literal","value":"Didymus heard a legal case against Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-9"},"description":{"xml:lang":"en","type":"literal","value":"Didymus heard a legal case against Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-9"},"description":{"xml:lang":"en","type":"literal","value":"Didymus heard a legal case against Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/3119"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-3"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3782 had a family relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-3"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3782 had a family relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-3"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3782 had a family relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-14"},"description":{"xml:lang":"en","type":"literal","value":"Harfat and Anonymous 3764 were kinsmen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-14"},"description":{"xml:lang":"en","type":"literal","value":"Harfat and Anonymous 3764 were kinsmen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-14"},"description":{"xml:lang":"en","type":"literal","value":"Harfat and Anonymous 3764 were kinsmen."},"source":{"type":"uri","value":"https://spear-prosop.org/803"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-9"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Musonius were part of Anonymi 3723."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-9"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Musonius were part of Anonymi 3723."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-9"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Musonius were part of Anonymi 3723."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-34"},"description":{"xml:lang":"en","type":"literal","value":"Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-34"},"description":{"xml:lang":"en","type":"literal","value":"Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-34"},"description":{"xml:lang":"en","type":"literal","value":"Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-15"},"description":{"xml:lang":"en","type":"literal","value":"Mark was part of Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-15"},"description":{"xml:lang":"en","type":"literal","value":"Mark was part of Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-15"},"description":{"xml:lang":"en","type":"literal","value":"Mark was part of Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-12"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was part of Anonymi 3112."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-12"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was part of Anonymi 3112."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-12"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was part of Anonymi 3112."},"source":{"type":"uri","value":"https://spear-prosop.org/3112"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-44"},"description":{"xml:lang":"en","type":"literal","value":"Alexander of Alexandria was part of Anonymi 3089."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-44"},"description":{"xml:lang":"en","type":"literal","value":"Alexander of Alexandria was part of Anonymi 3089."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-44"},"description":{"xml:lang":"en","type":"literal","value":"Alexander of Alexandria was part of Anonymi 3089."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-79"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3639 was part of Anonymi 3640."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-79"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3639 was part of Anonymi 3640."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-79"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3639 was part of Anonymi 3640."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-116"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3617 was part of Anonymi 3620."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-116"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3617 was part of Anonymi 3620."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-116"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3617 was part of Anonymi 3620."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-106"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-106"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-106"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-177"},"description":{"xml:lang":"en","type":"literal","value":"Abba was a monastic authority over Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-177"},"description":{"xml:lang":"en","type":"literal","value":"Abba was a monastic authority over Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-177"},"description":{"xml:lang":"en","type":"literal","value":"Abba was a monastic authority over Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-204"},"description":{"xml:lang":"en","type":"literal","value":"John was a monastic authority over Samuel, Jonathan and Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-204"},"description":{"xml:lang":"en","type":"literal","value":"John was a monastic authority over Samuel, Jonathan and Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-204"},"description":{"xml:lang":"en","type":"literal","value":"John was a monastic authority over Samuel, Jonathan and Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-47"},"description":{"xml:lang":"en","type":"literal","value":"Samuel was a monastic authority over Jonathan and Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-47"},"description":{"xml:lang":"en","type":"literal","value":"Samuel was a monastic authority over Jonathan and Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-47"},"description":{"xml:lang":"en","type":"literal","value":"Samuel was a monastic authority over Jonathan and Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-52"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-52"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-52"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-59"},"description":{"xml:lang":"en","type":"literal","value":"Job was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-59"},"description":{"xml:lang":"en","type":"literal","value":"Job was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-59"},"description":{"xml:lang":"en","type":"literal","value":"Job was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-79"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-79"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-79"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-85"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-85"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-85"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-13"},"description":{"xml:lang":"en","type":"literal","value":"Jannia was a monastic authority over Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-13"},"description":{"xml:lang":"en","type":"literal","value":"Jannia was a monastic authority over Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-13"},"description":{"xml:lang":"en","type":"literal","value":"Jannia was a monastic authority over Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/3013"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-4"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas was monastic head over Julian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-4"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas was monastic head over Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-4"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas was monastic head over Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/3023"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-7"},"description":{"xml:lang":"en","type":"literal","value":"Valeriana was a monastic authority over Anonymi 3035."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-7"},"description":{"xml:lang":"en","type":"literal","value":"Valeriana was a monastic authority over Anonymi 3035."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-7"},"description":{"xml:lang":"en","type":"literal","value":"Valeriana was a monastic authority over Anonymi 3035."},"source":{"type":"uri","value":"https://spear-prosop.org/3029"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3738 was a monastic authority over Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3738 was a monastic authority over Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3738 was a monastic authority over Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-10"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius was an archimandrite with authority over Anonymous 3784."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-10"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius was an archimandrite with authority over Anonymous 3784."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-10"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius was an archimandrite with authority over Anonymous 3784."},"source":{"type":"uri","value":"https://spear-prosop.org/3090"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John was a monastic authority over Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John was a monastic authority over Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John was a monastic authority over Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-14"},"description":{"xml:lang":"en","type":"literal","value":"Andrew and Photius was a monastic authority over Anonymous 3730."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-14"},"description":{"xml:lang":"en","type":"literal","value":"Andrew and Photius was a monastic authority over Anonymous 3730."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-14"},"description":{"xml:lang":"en","type":"literal","value":"Andrew and Photius was a monastic authority over Anonymous 3730."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-30"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana was a monastic authority over Anonymi 3752."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-30"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana was a monastic authority over Anonymi 3752."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-30"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana was a monastic authority over Anonymi 3752."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-15"},"description":{"xml:lang":"en","type":"literal","value":"Simeon was a monastic authority over Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-15"},"description":{"xml:lang":"en","type":"literal","value":"Simeon was a monastic authority over Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-15"},"description":{"xml:lang":"en","type":"literal","value":"Simeon was a monastic authority over Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-65"},"description":{"xml:lang":"en","type":"literal","value":"Maro was a monastic authority over Samuel and Anonymous 3665."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-65"},"description":{"xml:lang":"en","type":"literal","value":"Maro was a monastic authority over Samuel and Anonymous 3665."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-65"},"description":{"xml:lang":"en","type":"literal","value":"Maro was a monastic authority over Samuel and Anonymous 3665."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3667 was a monastic authority over Anonymous 3662."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3667 was a monastic authority over Anonymous 3662."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3667 was a monastic authority over Anonymous 3662."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus was a monastic authority over Anonymous 3720."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus was a monastic authority over Anonymous 3720."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus was a monastic authority over Anonymous 3720."},"source":{"type":"uri","value":"https://spear-prosop.org/844"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-13"},"description":{"xml:lang":"en","type":"literal","value":"Cosmiana was a monastic authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-13"},"description":{"xml:lang":"en","type":"literal","value":"Cosmiana was a monastic authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-13"},"description":{"xml:lang":"en","type":"literal","value":"Cosmiana was a monastic authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/845"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-41"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius ordained Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-41"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius ordained Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-41"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius ordained Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-57"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius of Samosata ordained Anonymi 3132."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-57"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius of Samosata ordained Anonymi 3132."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-57"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius of Samosata ordained Anonymi 3132."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-67"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3133 ordained Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-67"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3133 ordained Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-67"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3133 ordained Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3135 ordained Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3135 ordained Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3135 ordained Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-18"},"description":{"xml:lang":"en","type":"literal","value":"Flavian II of Antioch ordained Anonymous 3032."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-18"},"description":{"xml:lang":"en","type":"literal","value":"Flavian II of Antioch ordained Anonymous 3032."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-18"},"description":{"xml:lang":"en","type":"literal","value":"Flavian II of Antioch ordained Anonymous 3032."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3037 ordained Anonymi 3036."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3037 ordained Anonymi 3036."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3037 ordained Anonymi 3036."},"source":{"type":"uri","value":"https://spear-prosop.org/3031"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Philip."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/3039"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-4"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian ordained Anonymi 3074."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-4"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian ordained Anonymi 3074."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-4"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian ordained Anonymi 3074."},"source":{"type":"uri","value":"https://spear-prosop.org/3055"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil ordained Anonymous 3087."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil ordained Anonymous 3087."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil ordained Anonymous 3087."},"source":{"type":"uri","value":"https://spear-prosop.org/3065"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-9"},"description":{"xml:lang":"en","type":"literal","value":"Elijah of Jerusalem ordained Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-9"},"description":{"xml:lang":"en","type":"literal","value":"Elijah of Jerusalem ordained Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-9"},"description":{"xml:lang":"en","type":"literal","value":"Elijah of Jerusalem ordained Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/3087"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Anonymi 3100."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Anonymi 3100."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Anonymi 3100."},"source":{"type":"uri","value":"https://spear-prosop.org/3092"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-27"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius ordained Isaiah presbyter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-27"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius ordained Isaiah presbyter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-27"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius ordained Isaiah presbyter."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-57"},"description":{"xml:lang":"en","type":"literal","value":"Gregory the Wonderworker ordained Phaedimus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-57"},"description":{"xml:lang":"en","type":"literal","value":"Gregory the Wonderworker ordained Phaedimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-57"},"description":{"xml:lang":"en","type":"literal","value":"Gregory the Wonderworker ordained Phaedimus."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-72"},"description":{"xml:lang":"en","type":"literal","value":"Paulinus ordained Evagrius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-72"},"description":{"xml:lang":"en","type":"literal","value":"Paulinus ordained Evagrius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-72"},"description":{"xml:lang":"en","type":"literal","value":"Paulinus ordained Evagrius."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-74"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3757 ordained Flavian I of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-74"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3757 ordained Flavian I of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-74"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3757 ordained Flavian I of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3122 ordained Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3122 ordained Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3122 ordained Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer ordained Anonymi 3700."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer ordained Anonymi 3700."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer ordained Anonymi 3700."},"source":{"type":"uri","value":"https://spear-prosop.org/808"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-11"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-11"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-11"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-14"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-14"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-14"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-17"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-17"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-17"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-20"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-20"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-20"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-23"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-23"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-23"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-26"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-26"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-26"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-29"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-29"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-29"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-33"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and others ordained Paul as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-33"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and others ordained Paul as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-33"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and others ordained Paul as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-34"},"description":{"xml:lang":"en","type":"literal","value":"In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-34"},"description":{"xml:lang":"en","type":"literal","value":"In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-34"},"description":{"xml:lang":"en","type":"literal","value":"In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-39"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-39"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-39"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-42"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-42"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-42"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-44"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-44"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-44"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-46"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-46"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-46"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-51"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-51"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-51"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-53"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-53"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-53"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda."},"source":{"type":"uri","value":"https://spear-prosop.org/841"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-12"},"description":{"xml:lang":"en","type":"literal","value":"After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-12"},"description":{"xml:lang":"en","type":"literal","value":"After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-12"},"description":{"xml:lang":"en","type":"literal","value":"After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)."},"source":{"type":"uri","value":"https://spear-prosop.org/842"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-71"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3670 was the parent of Abraham and Anonymous 3671."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-71"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3670 was the parent of Abraham and Anonymous 3671."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-71"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3670 was the parent of Abraham and Anonymous 3671."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-3"},"description":{"xml:lang":"en","type":"literal","value":"Conon was the father of Anonymous 3774"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-3"},"description":{"xml:lang":"en","type":"literal","value":"Conon was the father of Anonymous 3774"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-3"},"description":{"xml:lang":"en","type":"literal","value":"Conon was the father of Anonymous 3774"},"source":{"type":"uri","value":"https://spear-prosop.org/3007"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-36"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3755 was the parent of Anonymous 3754."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-36"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3755 was the parent of Anonymous 3754."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-36"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3755 was the parent of Anonymous 3754."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 was the parent of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 was the parent of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 was the parent of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/3127"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-16"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3758 was the parent of Father Poemen ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-16"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3758 was the parent of Father Poemen ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-16"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3758 was the parent of Father Poemen ."},"source":{"type":"uri","value":"https://spear-prosop.org/3138"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3120 was the parent of Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3120 was the parent of Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3120 was the parent of Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-39"},"description":{"xml:lang":"en","type":"literal","value":"Podalirius was the parent of Anonymous 3123."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-39"},"description":{"xml:lang":"en","type":"literal","value":"Podalirius was the parent of Anonymous 3123."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-39"},"description":{"xml:lang":"en","type":"literal","value":"Podalirius was the parent of Anonymous 3123."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3624 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3624 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3624 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3625 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3625 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3625 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3706 was the parent of Suzanna."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3706 was the parent of Suzanna."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3706 was the parent of Suzanna."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3696 was the parent of Mary the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3696 was the parent of Mary the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3696 was the parent of Mary the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/820"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-14"},"description":{"xml:lang":"en","type":"literal","value":"Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-14"},"description":{"xml:lang":"en","type":"literal","value":"Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-14"},"description":{"xml:lang":"en","type":"literal","value":"Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-11"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana acted as patron of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-11"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana acted as patron of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-11"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana acted as patron of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-12"},"description":{"xml:lang":"en","type":"literal","value":"Abba, Severus of Antioch and Maximus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-12"},"description":{"xml:lang":"en","type":"literal","value":"Abba, Severus of Antioch and Maximus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-12"},"description":{"xml:lang":"en","type":"literal","value":"Abba, Severus of Antioch and Maximus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3002"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-10"},"description":{"xml:lang":"en","type":"literal","value":"Asterius and Anonymi 3129 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-10"},"description":{"xml:lang":"en","type":"literal","value":"Asterius and Anonymi 3129 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-10"},"description":{"xml:lang":"en","type":"literal","value":"Asterius and Anonymi 3129 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-15"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Flavian II of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-15"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Flavian II of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-15"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Flavian II of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-45"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Timothy II of Alexandria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-45"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Timothy II of Alexandria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-45"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Timothy II of Alexandria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-51"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-51"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-51"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-16"},"description":{"xml:lang":"en","type":"literal","value":"Theodore the Deacon asked Severus about the commands Jannia gave him."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-16"},"description":{"xml:lang":"en","type":"literal","value":"Theodore the Deacon asked Severus about the commands Jannia gave him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-16"},"description":{"xml:lang":"en","type":"literal","value":"Theodore the Deacon asked Severus about the commands Jannia gave him."},"source":{"type":"uri","value":"https://spear-prosop.org/3013"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-9"},"description":{"xml:lang":"en","type":"literal","value":"Jannia, Theodore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-9"},"description":{"xml:lang":"en","type":"literal","value":"Jannia, Theodore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-9"},"description":{"xml:lang":"en","type":"literal","value":"Jannia, Theodore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3013"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/3034"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3044 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3044 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3044 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anonymous 3778 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anonymous 3778 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anonymous 3778 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-18"},"description":{"xml:lang":"en","type":"literal","value":"Theodosius and Entrechius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-18"},"description":{"xml:lang":"en","type":"literal","value":"Theodosius and Entrechius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-18"},"description":{"xml:lang":"en","type":"literal","value":"Theodosius and Entrechius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Apophon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Apophon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Apophon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3039"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3054 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3054 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3054 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-21"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus and Anonymi 3055 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-21"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus and Anonymi 3055 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-21"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus and Anonymi 3055 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Isidore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Isidore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Isidore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-8"},"description":{"xml:lang":"en","type":"literal","value":"Antiochus, Severus of Antioch and Antoninus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-8"},"description":{"xml:lang":"en","type":"literal","value":"Antiochus, Severus of Antioch and Antoninus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-8"},"description":{"xml:lang":"en","type":"literal","value":"Antiochus, Severus of Antioch and Antoninus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-16"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-16"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-16"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Eleutherius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Eleutherius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Eleutherius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3061 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3061 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3061 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3060 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3060 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3060 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-13"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-13"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-13"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-23"},"description":{"xml:lang":"en","type":"literal","value":"Solon and Paul had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-23"},"description":{"xml:lang":"en","type":"literal","value":"Solon and Paul had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-23"},"description":{"xml:lang":"en","type":"literal","value":"Solon and Paul had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-13"},"description":{"xml:lang":"en","type":"literal","value":"John and Aelian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-13"},"description":{"xml:lang":"en","type":"literal","value":"John and Aelian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-13"},"description":{"xml:lang":"en","type":"literal","value":"John and Aelian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3047"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3051-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Neon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3051-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Neon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3051-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Neon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3051"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-11"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-11"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-11"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-26"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3072 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-26"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3072 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-26"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3072 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3056"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-11"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-11"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-11"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-26"},"description":{"xml:lang":"en","type":"literal","value":"Stephen, Severus of Antioch and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-26"},"description":{"xml:lang":"en","type":"literal","value":"Stephen, Severus of Antioch and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-26"},"description":{"xml:lang":"en","type":"literal","value":"Stephen, Severus of Antioch and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3072"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-12"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-12"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-12"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3083"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3099 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3099 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3099 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3087"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3099 and Anonymi 3100 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3099 and Anonymi 3100 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3099 and Anonymi 3100 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3092"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-45"},"description":{"xml:lang":"en","type":"literal","value":"Isidore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-45"},"description":{"xml:lang":"en","type":"literal","value":"Isidore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-45"},"description":{"xml:lang":"en","type":"literal","value":"Isidore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3103 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3103 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3103 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3104"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3114 and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3114 and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3114 and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-7"},"description":{"xml:lang":"en","type":"literal","value":"Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-7"},"description":{"xml:lang":"en","type":"literal","value":"Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-7"},"description":{"xml:lang":"en","type":"literal","value":"Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-10"},"description":{"xml:lang":"en","type":"literal","value":"Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-10"},"description":{"xml:lang":"en","type":"literal","value":"Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-10"},"description":{"xml:lang":"en","type":"literal","value":"Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-54"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Julian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-54"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Julian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-54"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Julian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus and James had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus and James had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus and James had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 and Zacharias had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 and Zacharias had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 and Zacharias had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-34/"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751, Joseph, and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-34/"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751, Joseph, and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-34/"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751, Joseph, and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Philip had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Philip had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Philip had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Victor had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Victor had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Victor had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-9"},"description":{"xml:lang":"en","type":"literal","value":"Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-9"},"description":{"xml:lang":"en","type":"literal","value":"Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-9"},"description":{"xml:lang":"en","type":"literal","value":"Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/3242"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-22"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer and Anonymi 3701 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-22"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer and Anonymi 3701 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-22"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer and Anonymi 3701 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/808"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-17"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3768 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-17"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3768 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-17"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3768 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-20"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-20"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-20"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3768 and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3768 and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3768 and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-10"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-10"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-10"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-8"},"description":{"xml:lang":"en","type":"literal","value":"John and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-8"},"description":{"xml:lang":"en","type":"literal","value":"John and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-8"},"description":{"xml:lang":"en","type":"literal","value":"John and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-18"},"description":{"xml:lang":"en","type":"literal","value":"John and Justinian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-18"},"description":{"xml:lang":"en","type":"literal","value":"John and Justinian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-18"},"description":{"xml:lang":"en","type":"literal","value":"John and Justinian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-20"},"description":{"xml:lang":"en","type":"literal","value":"Mishael and Justinian had a professional relationhsip."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-20"},"description":{"xml:lang":"en","type":"literal","value":"Mishael and Justinian had a professional relationhsip."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-20"},"description":{"xml:lang":"en","type":"literal","value":"Mishael and Justinian had a professional relationhsip."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Mishael had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Mishael had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Mishael had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-23"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-23"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-23"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-9"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Justinian had a professional relationship/"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-9"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Justinian had a professional relationship/"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-9"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Justinian had a professional relationship/"},"source":{"type":"uri","value":"https://spear-prosop.org/848"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-133"},"description":{"xml:lang":"en","type":"literal","value":"Barsa and Constantius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-133"},"description":{"xml:lang":"en","type":"literal","value":"Barsa and Constantius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-133"},"description":{"xml:lang":"en","type":"literal","value":"Barsa and Constantius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-262"},"description":{"xml:lang":"en","type":"literal","value":"Arcadius and Honorios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-262"},"description":{"xml:lang":"en","type":"literal","value":"Arcadius and Honorios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-262"},"description":{"xml:lang":"en","type":"literal","value":"Arcadius and Honorios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-371"},"description":{"xml:lang":"en","type":"literal","value":"Leontios and Zeno had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-371"},"description":{"xml:lang":"en","type":"literal","value":"Leontios and Zeno had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-371"},"description":{"xml:lang":"en","type":"literal","value":"Leontios and Zeno had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-38"},"description":{"xml:lang":"en","type":"literal","value":"Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-38"},"description":{"xml:lang":"en","type":"literal","value":"Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-38"},"description":{"xml:lang":"en","type":"literal","value":"Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-404"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Euphemios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-404"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Euphemios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-404"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Euphemios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-438"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Macedonios II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-438"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Macedonios II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-438"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Macedonios II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-444"},"description":{"xml:lang":"en","type":"literal","value":"Vitalian and Anastasios I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-444"},"description":{"xml:lang":"en","type":"literal","value":"Vitalian and Anastasios I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-444"},"description":{"xml:lang":"en","type":"literal","value":"Vitalian and Anastasios I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-45"},"description":{"xml:lang":"en","type":"literal","value":"Bar Din and Bulid had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-45"},"description":{"xml:lang":"en","type":"literal","value":"Bar Din and Bulid had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-45"},"description":{"xml:lang":"en","type":"literal","value":"Bar Din and Bulid had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-459"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-459"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-459"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-463"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Justin I and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-463"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Justin I and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-463"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Justin I and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-481"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius and Euphrasios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-481"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius and Euphrasios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-481"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius and Euphrasios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-489"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I, Euphrasios and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-489"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I, Euphrasios and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-489"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I, Euphrasios and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-521"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I and Justin I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-521"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I and Justin I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-521"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I and Justin I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-553"},"description":{"xml:lang":"en","type":"literal","value":"Honorios and Theodosius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-553"},"description":{"xml:lang":"en","type":"literal","value":"Honorios and Theodosius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-553"},"description":{"xml:lang":"en","type":"literal","value":"Honorios and Theodosius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-15"},"description":{"xml:lang":"en","type":"literal","value":"When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-15"},"description":{"xml:lang":"en","type":"literal","value":"When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-15"},"description":{"xml:lang":"en","type":"literal","value":"When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus defended Julian against charges that he attempted to mislead Anastasios."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus defended Julian against charges that he attempted to mislead Anastasios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus defended Julian against charges that he attempted to mislead Anastasios."},"source":{"type":"uri","value":"https://spear-prosop.org/3064"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-26"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-26"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-26"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-17"},"description":{"xml:lang":"en","type":"literal","value":"Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-17"},"description":{"xml:lang":"en","type":"literal","value":"Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-17"},"description":{"xml:lang":"en","type":"literal","value":"Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-18"},"description":{"xml:lang":"en","type":"literal","value":"Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-18"},"description":{"xml:lang":"en","type":"literal","value":"Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-18"},"description":{"xml:lang":"en","type":"literal","value":"Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-388"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-388"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-388"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-389"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-389"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-389"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-396"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-396"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-396"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-408"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Anastasios deposed Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-408"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Anastasios deposed Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-408"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Anastasios deposed Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-409"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-409"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-409"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-420"},"description":{"xml:lang":"en","type":"literal","value":"In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-420"},"description":{"xml:lang":"en","type":"literal","value":"In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-420"},"description":{"xml:lang":"en","type":"literal","value":"In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-421"},"description":{"xml:lang":"en","type":"literal","value":"During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-421"},"description":{"xml:lang":"en","type":"literal","value":"During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-421"},"description":{"xml:lang":"en","type":"literal","value":"During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-482"},"description":{"xml:lang":"en","type":"literal","value":"In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-482"},"description":{"xml:lang":"en","type":"literal","value":"In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-482"},"description":{"xml:lang":"en","type":"literal","value":"In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-501"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-501"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-501"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-502"},"description":{"xml:lang":"en","type":"literal","value":"On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-502"},"description":{"xml:lang":"en","type":"literal","value":"On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-502"},"description":{"xml:lang":"en","type":"literal","value":"On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-504"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-504"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-504"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-533"},"description":{"xml:lang":"en","type":"literal","value":"On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-533"},"description":{"xml:lang":"en","type":"literal","value":"On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-533"},"description":{"xml:lang":"en","type":"literal","value":"On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-542"},"description":{"xml:lang":"en","type":"literal","value":"In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-542"},"description":{"xml:lang":"en","type":"literal","value":"In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-542"},"description":{"xml:lang":"en","type":"literal","value":"In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-8"},"description":{"xml:lang":"en","type":"literal","value":"While in exile, Severus came into conflict with Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/refuter-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-8"},"description":{"xml:lang":"en","type":"literal","value":"While in exile, Severus came into conflict with Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/refuter-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-8"},"description":{"xml:lang":"en","type":"literal","value":"While in exile, Severus came into conflict with Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/refuter-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/3064"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3064"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-18"},"description":{"xml:lang":"en","type":"literal","value":"Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-18"},"description":{"xml:lang":"en","type":"literal","value":"Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-18"},"description":{"xml:lang":"en","type":"literal","value":"Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-261"},"description":{"xml:lang":"en","type":"literal","value":"In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-261"},"description":{"xml:lang":"en","type":"literal","value":"In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-261"},"description":{"xml:lang":"en","type":"literal","value":"In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-476"},"description":{"xml:lang":"en","type":"literal","value":"In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-476"},"description":{"xml:lang":"en","type":"literal","value":"In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-476"},"description":{"xml:lang":"en","type":"literal","value":"In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-545"},"description":{"xml:lang":"en","type":"literal","value":"The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-545"},"description":{"xml:lang":"en","type":"literal","value":"The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513"},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-545"},"description":{"xml:lang":"en","type":"literal","value":"The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-546"},"description":{"xml:lang":"en","type":"literal","value":"The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-546"},"description":{"xml:lang":"en","type":"literal","value":"The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614"},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-546"},"description":{"xml:lang":"en","type":"literal","value":"The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-554"},"description":{"xml:lang":"en","type":"literal","value":"The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-554"},"description":{"xml:lang":"en","type":"literal","value":"The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-554"},"description":{"xml:lang":"en","type":"literal","value":"The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-555"},"description":{"xml:lang":"en","type":"literal","value":"The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-555"},"description":{"xml:lang":"en","type":"literal","value":"The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836"},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-555"},"description":{"xml:lang":"en","type":"literal","value":"The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-79"},"description":{"xml:lang":"en","type":"literal","value":"The walls of Edessa were destroyed in 302/3 A. Gr. 614 ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-79"},"description":{"xml:lang":"en","type":"literal","value":"The walls of Edessa were destroyed in 302/3 A. Gr. 614 ."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-79"},"description":{"xml:lang":"en","type":"literal","value":"The walls of Edessa were destroyed in 302/3 A. Gr. 614 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3001-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theognostus discussing Isaiah 61.1"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3001-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theognostus discussing Isaiah 61.1"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3001-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theognostus discussing Isaiah 61.1"},"source":{"type":"uri","value":"https://spear-prosop.org/3001"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/3002"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/3002"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Abba on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Abba on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Abba on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/3002"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-7"},"description":{"xml:lang":"en","type":"literal","value":"Abba sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-7"},"description":{"xml:lang":"en","type":"literal","value":"Abba sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-7"},"description":{"xml:lang":"en","type":"literal","value":"Abba sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/3002"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3003-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3003-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3003-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3003"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-4"},"description":{"xml:lang":"en","type":"literal","value":"Constantine sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-4"},"description":{"xml:lang":"en","type":"literal","value":"Constantine sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-4"},"description":{"xml:lang":"en","type":"literal","value":"Constantine sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-74"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-74"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-74"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-88"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote letters on similar themes to Oecumenius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-88"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote letters on similar themes to Oecumenius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-88"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote letters on similar themes to Oecumenius."},"source":{"type":"uri","value":"https://spear-prosop.org/3004"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain."},"source":{"type":"uri","value":"https://spear-prosop.org/3005"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3006-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3006-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3006-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/3006"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith."},"source":{"type":"uri","value":"https://spear-prosop.org/3007"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus about the marriage of Conon's daughter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus about the marriage of Conon's daughter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus about the marriage of Conon's daughter."},"source":{"type":"uri","value":"https://spear-prosop.org/3007"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife."},"source":{"type":"uri","value":"https://spear-prosop.org/3008"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/3009"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/3009"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3010-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore urging him to keep his monastic vows."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3010-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore urging him to keep his monastic vows."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3010-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore urging him to keep his monastic vows."},"source":{"type":"uri","value":"https://spear-prosop.org/3010"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same."},"source":{"type":"uri","value":"https://spear-prosop.org/3011"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person."},"source":{"type":"uri","value":"https://spear-prosop.org/3012"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jannia concerning her leadership as archimandritess."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jannia concerning her leadership as archimandritess."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jannia concerning her leadership as archimandritess."},"source":{"type":"uri","value":"https://spear-prosop.org/3013"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the the trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the the trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the the trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3015"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus asking about trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus asking about trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus asking about trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3015"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3016-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3016-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3016-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3016"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-12"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Dioscorus and Chaeremon"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-12"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Dioscorus and Chaeremon"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-12"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Dioscorus and Chaeremon"},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus defending Peter Mongus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus defending Peter Mongus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus defending Peter Mongus."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-6"},"description":{"xml:lang":"en","type":"literal","value":"In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-6"},"description":{"xml:lang":"en","type":"literal","value":"In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-6"},"description":{"xml:lang":"en","type":"literal","value":"In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-7"},"description":{"xml:lang":"en","type":"literal","value":"John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-7"},"description":{"xml:lang":"en","type":"literal","value":"John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-7"},"description":{"xml:lang":"en","type":"literal","value":"John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3017"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus wrote a letter to Severus indicating that he had received into communion Castor"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus wrote a letter to Severus indicating that he had received into communion Castor"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus wrote a letter to Severus indicating that he had received into communion Castor"},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3018"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia."},"source":{"type":"uri","value":"https://spear-prosop.org/3019"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius wrote a letter to Severus about a trial of some presbyters."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius wrote a letter to Severus about a trial of some presbyters."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius wrote a letter to Severus about a trial of some presbyters."},"source":{"type":"uri","value":"https://spear-prosop.org/3019"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans."},"source":{"type":"uri","value":"https://spear-prosop.org/3020"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3021"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/3021"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3022"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin."},"source":{"type":"uri","value":"https://spear-prosop.org/3023"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3024"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-2"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-2"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-2"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.."},"source":{"type":"uri","value":"https://spear-prosop.org/3025"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon disucssing episcopal authority and canon law."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon disucssing episcopal authority and canon law."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon disucssing episcopal authority and canon law."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/3026"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon on the origin of human sinfulness."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon on the origin of human sinfulness."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon on the origin of human sinfulness."},"source":{"type":"uri","value":"https://spear-prosop.org/3027"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-4"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Severus accusing him with performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-4"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Severus accusing him with performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-4"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Severus accusing him with performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Thomas accusing Severus of performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Thomas accusing Severus of performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Thomas accusing Severus of performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/3028"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care."},"source":{"type":"uri","value":"https://spear-prosop.org/3029"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite."},"source":{"type":"uri","value":"https://spear-prosop.org/3030"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/3031"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-4"},"description":{"xml:lang":"en","type":"literal","value":"Timostratus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-4"},"description":{"xml:lang":"en","type":"literal","value":"Timostratus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-4"},"description":{"xml:lang":"en","type":"literal","value":"Timostratus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3033"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/3033"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion."},"source":{"type":"uri","value":"https://spear-prosop.org/3034"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/3034"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-15"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent letters to Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-15"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent letters to Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-15"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent letters to Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/3035"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-11"},"description":{"xml:lang":"en","type":"literal","value":"Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-11"},"description":{"xml:lang":"en","type":"literal","value":"Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-11"},"description":{"xml:lang":"en","type":"literal","value":"Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3036"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus replied to a letter of John on the subject of not communing with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus replied to a letter of John on the subject of not communing with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus replied to a letter of John on the subject of not communing with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Entrechius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Entrechius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Entrechius."},"source":{"type":"uri","value":"https://spear-prosop.org/3038"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3053."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3053."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3053."},"source":{"type":"uri","value":"https://spear-prosop.org/3039"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/3040"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-5"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-5"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-5"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-6"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Anonymous 3056."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-6"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Anonymous 3056."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-6"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Anonymous 3056."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/3042"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-10"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-10"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-10"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/3043"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-12"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-12"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-12"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-15"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Anonymi 3061."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-15"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Anonymi 3061."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-15"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Anonymi 3061."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/3044"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-12"},"description":{"xml:lang":"en","type":"literal","value":"Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-12"},"description":{"xml:lang":"en","type":"literal","value":"Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-12"},"description":{"xml:lang":"en","type":"literal","value":"Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus."},"source":{"type":"uri","value":"https://spear-prosop.org/3045"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3046"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3725 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3725 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3725 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3047"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Victor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/3047"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072 sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072 sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072 sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3048"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Celer."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Celer."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Celer."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-6"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-6"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-6"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3049"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior."},"source":{"type":"uri","value":"https://spear-prosop.org/3050"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3052"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-20"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-20"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-20"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-22"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-22"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-22"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theotecnus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theotecnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theotecnus."},"source":{"type":"uri","value":"https://spear-prosop.org/3053"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/3054"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3055"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John III of Nicaea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John III of Nicaea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John III of Nicaea."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-18"},"description":{"xml:lang":"en","type":"literal","value":"Alexander and Musonius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-18"},"description":{"xml:lang":"en","type":"literal","value":"Alexander and Musonius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-18"},"description":{"xml:lang":"en","type":"literal","value":"Alexander and Musonius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Alexander and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Alexander and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Alexander and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/3057"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/3058"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3059"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/3060"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the Fathers on the subject of baptism and ordination."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the Fathers on the subject of baptism and ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the Fathers on the subject of baptism and ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-14"},"description":{"xml:lang":"en","type":"literal","value":"the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-14"},"description":{"xml:lang":"en","type":"literal","value":"the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-14"},"description":{"xml:lang":"en","type":"literal","value":"the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus."},"source":{"type":"uri","value":"https://spear-prosop.org/3061"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/3062"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Severus about uncanonical ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Severus about uncanonical ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Severus about uncanonical ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-4"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-4"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-4"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-7"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus about the theological erros of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-7"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus about the theological erros of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-7"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus about the theological erros of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/3063"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/3064"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3064"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/3065"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/3066"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-12"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-12"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-12"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3066"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/3067"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/3068"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eustathios."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eustathios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eustathios."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-5"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-5"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-5"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3069"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3070"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3072"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/3073"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3096."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3096."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3096."},"source":{"type":"uri","value":"https://spear-prosop.org/3073"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/3075"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/3076"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-4"},"description":{"xml:lang":"en","type":"literal","value":"Aurelius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-4"},"description":{"xml:lang":"en","type":"literal","value":"Aurelius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-4"},"description":{"xml:lang":"en","type":"literal","value":"Aurelius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3076"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen on the subject of reading the lives of saints."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen on the subject of reading the lives of saints."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen on the subject of reading the lives of saints."},"source":{"type":"uri","value":"https://spear-prosop.org/3077"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/3077"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3078"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3738."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3738."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3738."},"source":{"type":"uri","value":"https://spear-prosop.org/3081"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3739."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3739."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3739."},"source":{"type":"uri","value":"https://spear-prosop.org/3082"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3739 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3739 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3739 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3082"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eutychian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eutychian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eutychian."},"source":{"type":"uri","value":"https://spear-prosop.org/3083"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/3084"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/3084"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3741."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3741."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3741."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/3085"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3086"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/3087"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-15"},"description":{"xml:lang":"en","type":"literal","value":"Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-15"},"description":{"xml:lang":"en","type":"literal","value":"Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-15"},"description":{"xml:lang":"en","type":"literal","value":"Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan."},"source":{"type":"uri","value":"https://spear-prosop.org/3088"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3089"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-3"},"description":{"xml:lang":"en","type":"literal","value":"Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-3"},"description":{"xml:lang":"en","type":"literal","value":"Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-3"},"description":{"xml:lang":"en","type":"literal","value":"Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3089"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/3090"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-2"},"description":{"xml:lang":"en","type":"literal","value":"Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-2"},"description":{"xml:lang":"en","type":"literal","value":"Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-2"},"description":{"xml:lang":"en","type":"literal","value":"Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/3090"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance."},"source":{"type":"uri","value":"https://spear-prosop.org/3091"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philoxenos of Mabbug."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philoxenos of Mabbug."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philoxenos of Mabbug."},"source":{"type":"uri","value":"https://spear-prosop.org/3092"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nonnus on the disobedience of Pelagius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nonnus on the disobedience of Pelagius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nonnus on the disobedience of Pelagius."},"source":{"type":"uri","value":"https://spear-prosop.org/3093"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/3094"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/3095"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-2"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-2"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-2"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3095"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-1"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-1"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-1"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch"},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3096"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3097-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3097-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3097-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians."},"source":{"type":"uri","value":"https://spear-prosop.org/3097"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-15"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-15"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-15"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3098"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dioscorus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dioscorus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dioscorus."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/3100"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-2"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-2"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-2"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/3100"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/3103"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-4"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-4"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-4"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/3103"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/3104"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-6"},"description":{"xml:lang":"en","type":"literal","value":"Simeon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-6"},"description":{"xml:lang":"en","type":"literal","value":"Simeon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-6"},"description":{"xml:lang":"en","type":"literal","value":"Simeon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3104"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philip."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/3106"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-5"},"description":{"xml:lang":"en","type":"literal","value":"Philip sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-5"},"description":{"xml:lang":"en","type":"literal","value":"Philip sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-5"},"description":{"xml:lang":"en","type":"literal","value":"Philip sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3106"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-37"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-37"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-37"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-41"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-41"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-41"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-42"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-42"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-42"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-43"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-43"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-43"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-2"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-2"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-2"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-44"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-44"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-44"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/3109"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-13"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus about Ascalon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-13"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus about Ascalon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-13"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus about Ascalon."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/3110"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3112"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-8"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent a letter to Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-8"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent a letter to Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-8"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent a letter to Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/3112"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/3113"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-2"},"description":{"xml:lang":"en","type":"literal","value":"Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-2"},"description":{"xml:lang":"en","type":"literal","value":"Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-2"},"description":{"xml:lang":"en","type":"literal","value":"Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/3113"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-11"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios sent a letter to Fabius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-11"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios sent a letter to Fabius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-11"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios sent a letter to Fabius."},"source":{"type":"uri","value":"https://spear-prosop.org/3114"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/3114"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-12"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3116."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-12"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3116."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-12"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3116."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-14"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3117."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-14"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3117."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-14"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3117."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-15"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-15"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-15"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/3115"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/3116"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-27"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-27"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-27"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Thecla."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Thecla."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Thecla."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-8"},"description":{"xml:lang":"en","type":"literal","value":"Thecla sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-8"},"description":{"xml:lang":"en","type":"literal","value":"Thecla sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-8"},"description":{"xml:lang":"en","type":"literal","value":"Thecla sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/3117"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/3118"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/3118"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/3119"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal."},"source":{"type":"uri","value":"https://spear-prosop.org/3120"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis."},"source":{"type":"uri","value":"https://spear-prosop.org/3120"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/3121"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/3121"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/3122"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25."},"source":{"type":"uri","value":"https://spear-prosop.org/3122"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality."},"source":{"type":"uri","value":"https://spear-prosop.org/3123"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died."},"source":{"type":"uri","value":"https://spear-prosop.org/3123"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/3124"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-3"},"description":{"xml:lang":"en","type":"literal","value":"Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-3"},"description":{"xml:lang":"en","type":"literal","value":"Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-3"},"description":{"xml:lang":"en","type":"literal","value":"Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/3126"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/3127"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/3128"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-2"},"description":{"xml:lang":"en","type":"literal","value":"Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-2"},"description":{"xml:lang":"en","type":"literal","value":"Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-2"},"description":{"xml:lang":"en","type":"literal","value":"Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/3128"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/3129"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-2"},"description":{"xml:lang":"en","type":"literal","value":"John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-2"},"description":{"xml:lang":"en","type":"literal","value":"John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-2"},"description":{"xml:lang":"en","type":"literal","value":"John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/3129"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Sergius II."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Sergius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Sergius II."},"source":{"type":"uri","value":"https://spear-prosop.org/3130"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Marion."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/3130"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Julian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/3130"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-6"},"description":{"xml:lang":"en","type":"literal","value":"Julian sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-6"},"description":{"xml:lang":"en","type":"literal","value":"Julian sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-6"},"description":{"xml:lang":"en","type":"literal","value":"Julian sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3130"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3131"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3131"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3132-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3132-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3132-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse."},"source":{"type":"uri","value":"https://spear-prosop.org/3132"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation."},"source":{"type":"uri","value":"https://spear-prosop.org/3133"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing."},"source":{"type":"uri","value":"https://spear-prosop.org/3133"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Photius and Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Photius and Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Photius and Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/3134"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it."},"source":{"type":"uri","value":"https://spear-prosop.org/3135"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/3136"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3136"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-12"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-12"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-12"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/3137"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-13"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-13"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-13"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/3137"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/3137"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Isidora."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Isidora."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Isidora."},"source":{"type":"uri","value":"https://spear-prosop.org/3138"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidora sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidora sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidora sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3138"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died."},"source":{"type":"uri","value":"https://spear-prosop.org/3139"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew on the subject of ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew on the subject of ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew on the subject of ."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-16"},"description":{"xml:lang":"en","type":"literal","value":"John bar Aphthonia sent a letter to Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-16"},"description":{"xml:lang":"en","type":"literal","value":"John bar Aphthonia sent a letter to Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-16"},"description":{"xml:lang":"en","type":"literal","value":"John bar Aphthonia sent a letter to Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus received a letter from Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus received a letter from Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus received a letter from Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/3141"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3126 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3126 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3126 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-46"},"description":{"xml:lang":"en","type":"literal","value":"Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-46"},"description":{"xml:lang":"en","type":"literal","value":"Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-46"},"description":{"xml:lang":"en","type":"literal","value":"Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3143-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3143-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3143-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with."},"source":{"type":"uri","value":"https://spear-prosop.org/3143"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3144"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-5"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-5"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-5"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/3144"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom."},"source":{"type":"uri","value":"https://spear-prosop.org/3145"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living."},"source":{"type":"uri","value":"https://spear-prosop.org/3148"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3750 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3750 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3750 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3148"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses."},"source":{"type":"uri","value":"https://spear-prosop.org/3149"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3150-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3150-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3150-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper."},"source":{"type":"uri","value":"https://spear-prosop.org/3150"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3151-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius on the natures of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3151-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius on the natures of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3151-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius on the natures of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3151"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Simus discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Simus discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Simus discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/3152"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eusebius discussing the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/3153"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eusebius discussing the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eusebius discussing the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-2"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-2"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-2"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/3153"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/3154"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3155-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3155-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3155-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/3155"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3156-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron perfection existing only in God."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3156-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron perfection existing only in God."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3156-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron perfection existing only in God."},"source":{"type":"uri","value":"https://spear-prosop.org/3156"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3157-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3157-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3157-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3157"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3158"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3158"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3159"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3159"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/3160"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Entrechius discussing Christology and the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Entrechius discussing Christology and the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Entrechius discussing Christology and the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/3161"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3162"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-2"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-2"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-2"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3162"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3163"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3164-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3164-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3164-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/3164"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3165-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing purity and fasting."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3165-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing purity and fasting."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3165-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing purity and fasting."},"source":{"type":"uri","value":"https://spear-prosop.org/3165"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3167-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore on the subject Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3167-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore on the subject Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3167-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore on the subject Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3167"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the Trinity and opposition to heresy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the Trinity and opposition to heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the Trinity and opposition to heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/3168"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/3168"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John and John discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John and John discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John and John discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3169"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3169"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3170-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3170-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3170-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn."},"source":{"type":"uri","value":"https://spear-prosop.org/3170"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3173-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3173-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3173-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/3173"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol."},"source":{"type":"uri","value":"https://spear-prosop.org/3174"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/3175"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-2"},"description":{"xml:lang":"en","type":"literal","value":"Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-2"},"description":{"xml:lang":"en","type":"literal","value":"Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-2"},"description":{"xml:lang":"en","type":"literal","value":"Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/3175"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/3176"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/3176"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3178-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3178-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3178-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/3178"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-4"},"description":{"xml:lang":"en","type":"literal","value":"Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-4"},"description":{"xml:lang":"en","type":"literal","value":"Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-4"},"description":{"xml:lang":"en","type":"literal","value":"Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/3179"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3180-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3180-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3180-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference."},"source":{"type":"uri","value":"https://spear-prosop.org/3180"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3181"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-2"},"description":{"xml:lang":"en","type":"literal","value":"Isaac the Scholastic sent a letter to Severus about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-2"},"description":{"xml:lang":"en","type":"literal","value":"Isaac the Scholastic sent a letter to Severus about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-2"},"description":{"xml:lang":"en","type":"literal","value":"Isaac the Scholastic sent a letter to Severus about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/3181"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3182-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3182-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3182-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides."},"source":{"type":"uri","value":"https://spear-prosop.org/3182"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon."},"source":{"type":"uri","value":"https://spear-prosop.org/3183"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-2"},"description":{"xml:lang":"en","type":"literal","value":"The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-2"},"description":{"xml:lang":"en","type":"literal","value":"The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-2"},"description":{"xml:lang":"en","type":"literal","value":"The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria."},"source":{"type":"uri","value":"https://spear-prosop.org/3183"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3185-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3185-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3185-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/3185"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3186-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3186-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3186-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/3186"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3187-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3187-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3187-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church."},"source":{"type":"uri","value":"https://spear-prosop.org/3187"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/3188"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-3"},"description":{"xml:lang":"en","type":"literal","value":"Urban wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-3"},"description":{"xml:lang":"en","type":"literal","value":"Urban wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-3"},"description":{"xml:lang":"en","type":"literal","value":"Urban wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/3188"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3189-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3189-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3189-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed."},"source":{"type":"uri","value":"https://spear-prosop.org/3189"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-4"},"description":{"xml:lang":"en","type":"literal","value":"Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-4"},"description":{"xml:lang":"en","type":"literal","value":"Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-4"},"description":{"xml:lang":"en","type":"literal","value":"Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/3190"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3191-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3191-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3191-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3191"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3192-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3192-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3192-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/3192"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3193-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3193-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3193-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/3193"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter."},"source":{"type":"uri","value":"https://spear-prosop.org/3194"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus I wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus I wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus I wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/3194"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/3195"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philip discussing sin, repentance, and the monastic life."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philip discussing sin, repentance, and the monastic life."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philip discussing sin, repentance, and the monastic life."},"source":{"type":"uri","value":"https://spear-prosop.org/3196"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-4"},"description":{"xml:lang":"en","type":"literal","value":"Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-4"},"description":{"xml:lang":"en","type":"literal","value":"Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-4"},"description":{"xml:lang":"en","type":"literal","value":"Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/3196"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/3197"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/3197"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions."},"source":{"type":"uri","value":"https://spear-prosop.org/3198"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/3198"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3199-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3199-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3199-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force."},"source":{"type":"uri","value":"https://spear-prosop.org/3199"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3200-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3200-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3200-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories."},"source":{"type":"uri","value":"https://spear-prosop.org/3200"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3202-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3202-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3202-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin."},"source":{"type":"uri","value":"https://spear-prosop.org/3202"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3207-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3207-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3207-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex."},"source":{"type":"uri","value":"https://spear-prosop.org/3207"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3208-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3208-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3208-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse."},"source":{"type":"uri","value":"https://spear-prosop.org/3208"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/3209"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-4"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-4"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-4"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/3209"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3210-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3210-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3210-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people."},"source":{"type":"uri","value":"https://spear-prosop.org/3210"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3211-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3211-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3211-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness."},"source":{"type":"uri","value":"https://spear-prosop.org/3211"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3212-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3212-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3212-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4."},"source":{"type":"uri","value":"https://spear-prosop.org/3212"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3213-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3213-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3213-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/3213"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3214-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3214-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3214-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23."},"source":{"type":"uri","value":"https://spear-prosop.org/3214"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3215-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3215-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3215-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/3215"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3216-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the gentle correction of error."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3216-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the gentle correction of error."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3216-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the gentle correction of error."},"source":{"type":"uri","value":"https://spear-prosop.org/3216"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/3217"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-5"},"description":{"xml:lang":"en","type":"literal","value":"Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-5"},"description":{"xml:lang":"en","type":"literal","value":"Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-5"},"description":{"xml:lang":"en","type":"literal","value":"Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/3217"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3218-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3218-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3218-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10."},"source":{"type":"uri","value":"https://spear-prosop.org/3218"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21."},"source":{"type":"uri","value":"https://spear-prosop.org/3219"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-3"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-3"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-3"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15."},"source":{"type":"uri","value":"https://spear-prosop.org/3219"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3220-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3220-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3220-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/3220"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains."},"source":{"type":"uri","value":"https://spear-prosop.org/3221"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3222-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing good, evil, the law, and free will."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3222-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing good, evil, the law, and free will."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3222-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing good, evil, the law, and free will."},"source":{"type":"uri","value":"https://spear-prosop.org/3222"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory."},"source":{"type":"uri","value":"https://spear-prosop.org/3223"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25."},"source":{"type":"uri","value":"https://spear-prosop.org/3223"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3224-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3224-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3224-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve."},"source":{"type":"uri","value":"https://spear-prosop.org/3224"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case."},"source":{"type":"uri","value":"https://spear-prosop.org/3225"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips."},"source":{"type":"uri","value":"https://spear-prosop.org/3226"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/3227"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/3227"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3228-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3228-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3228-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols."},"source":{"type":"uri","value":"https://spear-prosop.org/3228"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3229-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3229-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3229-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot."},"source":{"type":"uri","value":"https://spear-prosop.org/3229"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3230-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3230-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3230-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way."},"source":{"type":"uri","value":"https://spear-prosop.org/3230"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3231-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3231-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3231-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy."},"source":{"type":"uri","value":"https://spear-prosop.org/3231"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3232-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3232-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3232-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17."},"source":{"type":"uri","value":"https://spear-prosop.org/3232"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3233-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3233-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3233-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude."},"source":{"type":"uri","value":"https://spear-prosop.org/3233"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3234-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eugenia on the benefits of overcoming the passions."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3234-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eugenia on the benefits of overcoming the passions."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3234-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eugenia on the benefits of overcoming the passions."},"source":{"type":"uri","value":"https://spear-prosop.org/3234"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/3235"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-3"},"description":{"xml:lang":"en","type":"literal","value":"Simus wrote a letter to Severus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-3"},"description":{"xml:lang":"en","type":"literal","value":"Simus wrote a letter to Severus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-3"},"description":{"xml:lang":"en","type":"literal","value":"Simus wrote a letter to Severus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/3235"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3236-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3236-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3236-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26."},"source":{"type":"uri","value":"https://spear-prosop.org/3236"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3237-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3237-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3237-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17."},"source":{"type":"uri","value":"https://spear-prosop.org/3237"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3238-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3238-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3238-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/3238"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3239-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3239-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3239-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7."},"source":{"type":"uri","value":"https://spear-prosop.org/3239"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3241-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3241-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3241-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead."},"source":{"type":"uri","value":"https://spear-prosop.org/3241"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II."},"source":{"type":"uri","value":"https://spear-prosop.org/3242"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-106"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Anonymous 3242."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-106"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Anonymous 3242."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-106"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Anonymous 3242."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-107"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-107"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-107"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 was the sibling of the parent of Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of-parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 was the sibling of the parent of Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of-parent-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 was the sibling of the parent of Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/3041"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of-parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-72"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3671 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-72"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3671 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-72"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3671 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/10510"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-16"},"description":{"xml:lang":"en","type":"literal","value":"Serenus and Julian were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-16"},"description":{"xml:lang":"en","type":"literal","value":"Serenus and Julian were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-16"},"description":{"xml:lang":"en","type":"literal","value":"Serenus and Julian were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-22"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-22"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-22"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/3099"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-7"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia and Innocent were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-7"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia and Innocent were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-7"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia and Innocent were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/3125"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-34"},"description":{"xml:lang":"en","type":"literal","value":"Jacob the Apostle and Judas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-34"},"description":{"xml:lang":"en","type":"literal","value":"Jacob the Apostle and Judas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-34"},"description":{"xml:lang":"en","type":"literal","value":"Jacob the Apostle and Judas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/3142"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-11"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Maron were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-11"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Maron were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-11"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Maron were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-12"},"description":{"xml:lang":"en","type":"literal","value":"Mary and Euphemia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-12"},"description":{"xml:lang":"en","type":"literal","value":"Mary and Euphemia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-12"},"description":{"xml:lang":"en","type":"literal","value":"Mary and Euphemia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/804"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-81"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-81"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-81"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-89"},"description":{"xml:lang":"en","type":"literal","value":"Cosmo and Thomas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-89"},"description":{"xml:lang":"en","type":"literal","value":"Cosmo and Thomas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-89"},"description":{"xml:lang":"en","type":"literal","value":"Cosmo and Thomas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-25"},"description":{"xml:lang":"en","type":"literal","value":"James and Anonymous 3760 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-25"},"description":{"xml:lang":"en","type":"literal","value":"James and Anonymous 3760 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-25"},"description":{"xml:lang":"en","type":"literal","value":"James and Anonymous 3760 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/807"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Ephrem of Amida were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Ephrem of Amida were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Ephrem of Amida were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/813"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-3"},"description":{"xml:lang":"en","type":"literal","value":"Addai and Abraham were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-3"},"description":{"xml:lang":"en","type":"literal","value":"Addai and Abraham were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-3"},"description":{"xml:lang":"en","type":"literal","value":"Addai and Abraham were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/814"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-77"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3667 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-77"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3667 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-77"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3667 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/819"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-10"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Elijah were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-10"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Elijah were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-10"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Elijah were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/823"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-11"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-11"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-11"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/823"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-12"},"description":{"xml:lang":"en","type":"literal","value":"Elijah and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-12"},"description":{"xml:lang":"en","type":"literal","value":"Elijah and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-12"},"description":{"xml:lang":"en","type":"literal","value":"Elijah and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/823"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-27"},"description":{"xml:lang":"en","type":"literal","value":"Justinian and Vigilantia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-27"},"description":{"xml:lang":"en","type":"literal","value":"Justinian and Vigilantia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-27"},"description":{"xml:lang":"en","type":"literal","value":"Justinian and Vigilantia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/839"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Anonymous 3654 and Anonymous 3655 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Anonymous 3654 and Anonymous 3655 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Anonymous 3654 and Anonymous 3655 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/847"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-145"},"description":{"xml:lang":"en","type":"literal","value":"Valentinian I and Valens were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-145"},"description":{"xml:lang":"en","type":"literal","value":"Valentinian I and Valens were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-145"},"description":{"xml:lang":"en","type":"literal","value":"Valentinian I and Valens were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-232"},"description":{"xml:lang":"en","type":"literal","value":"Anonmyous 2234 and Ephrem were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-232"},"description":{"xml:lang":"en","type":"literal","value":"Anonmyous 2234 and Ephrem were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-232"},"description":{"xml:lang":"en","type":"literal","value":"Anonmyous 2234 and Ephrem were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-70"},"description":{"xml:lang":"en","type":"literal","value":"Lucius Verus and Commodus were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-70"},"description":{"xml:lang":"en","type":"literal","value":"Lucius Verus and Commodus were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/8559"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-70"},"description":{"xml:lang":"en","type":"literal","value":"Lucius Verus and Commodus were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3744 enslaved Anonymous 3745."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3744 enslaved Anonymous 3745."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3744 enslaved Anonymous 3745."},"source":{"type":"uri","value":"https://spear-prosop.org/3107"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3765 were enslaved by Anonymous 3764 and Harfat."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3765 were enslaved by Anonymous 3764 and Harfat."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3765 were enslaved by Anonymous 3764 and Harfat."},"source":{"type":"uri","value":"https://spear-prosop.org/803"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-2"},"description":{"xml:lang":"en","type":"literal","value":"Alypius and Anonymous 3775 were married."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-2"},"description":{"xml:lang":"en","type":"literal","value":"Alypius and Anonymous 3775 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-2"},"description":{"xml:lang":"en","type":"literal","value":"Alypius and Anonymous 3775 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/3008"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-7"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymous 3776 were married."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-7"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymous 3776 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-7"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymous 3776 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/3011"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius and Anonymous 3785 were married."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius and Anonymous 3785 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius and Anonymous 3785 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/3014"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-3"},"description":{"xml:lang":"en","type":"literal","value":"John and Anonymous 3777 were married."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-3"},"description":{"xml:lang":"en","type":"literal","value":"John and Anonymous 3777 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-3"},"description":{"xml:lang":"en","type":"literal","value":"John and Anonymous 3777 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/3037"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-8"},"description":{"xml:lang":"en","type":"literal","value":"were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-8"},"description":{"xml:lang":"en","type":"literal","value":"were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-8"},"description":{"xml:lang":"en","type":"literal","value":"were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/3082"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3098 and Anonymous 3097 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3098 and Anonymous 3097 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3098 and Anonymous 3097 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/3084"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 and Anastasia were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 and Anastasia were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 and Anastasia were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/3127"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Anonymous 3120 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Anonymous 3120 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Anonymous 3120 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-33"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3123 and Anatolius were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-33"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3123 and Anatolius were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-33"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3123 and Anatolius were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/3140"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-41"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3627 and Anonymous 3628 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-41"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3627 and Anonymous 3628 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-41"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3627 and Anonymous 3628 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-54"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 and Anonymous 3632 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-54"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 and Anonymous 3632 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-54"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 and Anonymous 3632 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/796"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-105"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3242 and Khusrau I Anushirwan were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-105"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3242 and Khusrau I Anushirwan were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-105"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3242 and Khusrau I Anushirwan were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/802"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-44"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress and Justinian I were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-44"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress and Justinian I were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-44"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress and Justinian I were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/805"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-11"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian and Anonymous 3233 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-11"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian and Anonymous 3233 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-11"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian and Anonymous 3233 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/813"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-3"},"description":{"xml:lang":"en","type":"literal","value":"Isaac and Anonymous 3690 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-3"},"description":{"xml:lang":"en","type":"literal","value":"Isaac and Anonymous 3690 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-3"},"description":{"xml:lang":"en","type":"literal","value":"Isaac and Anonymous 3690 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/836"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-9"},"description":{"xml:lang":"en","type":"literal","value":"Theophilos and Mary were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-9"},"description":{"xml:lang":"en","type":"literal","value":"Theophilos and Mary were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-9"},"description":{"xml:lang":"en","type":"literal","value":"Theophilos and Mary were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/843"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-5"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and John were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-5"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and John were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-5"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and John were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/846"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-65"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 studied under Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-65"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 studied under Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-65"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 studied under Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/3111"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-27"},"description":{"xml:lang":"en","type":"literal","value":"Polycarp was a disciple of John the Evangelist"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-27"},"description":{"xml:lang":"en","type":"literal","value":"Polycarp was a disciple of John the Evangelist"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-27"},"description":{"xml:lang":"en","type":"literal","value":"Polycarp was a disciple of John the Evangelist"},"source":{"type":"uri","value":"https://spear-prosop.org/3116"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-75"},"description":{"xml:lang":"en","type":"literal","value":"Hananya studied under Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-75"},"description":{"xml:lang":"en","type":"literal","value":"Hananya studied under Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-75"},"description":{"xml:lang":"en","type":"literal","value":"Hananya studied under Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-80"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora studied under Anonymous 3634."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-80"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora studied under Anonymous 3634."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-80"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora studied under Anonymous 3634."},"source":{"type":"uri","value":"https://spear-prosop.org/794"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3698 studied under Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3698 studied under Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3698 studied under Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/797"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-10"},"description":{"xml:lang":"en","type":"literal","value":"Mara the Solitary studied under Paul the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-10"},"description":{"xml:lang":"en","type":"literal","value":"Mara the Solitary studied under Paul the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-10"},"description":{"xml:lang":"en","type":"literal","value":"Mara the Solitary studied under Paul the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/828"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-6"},"description":{"xml:lang":"en","type":"literal","value":"Mari studied under Mara of Beth Urtaye."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-6"},"description":{"xml:lang":"en","type":"literal","value":"Mari studied under Mara of Beth Urtaye."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-6"},"description":{"xml:lang":"en","type":"literal","value":"Mari studied under Mara of Beth Urtaye."},"source":{"type":"uri","value":"https://spear-prosop.org/833"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3032"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/3071"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-24"},"description":{"xml:lang":"en","type":"literal","value":"Julian made a legal petition to Heliodorus"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-24"},"description":{"xml:lang":"en","type":"literal","value":"Julian made a legal petition to Heliodorus"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-24"},"description":{"xml:lang":"en","type":"literal","value":"Julian made a legal petition to Heliodorus"},"source":{"type":"uri","value":"https://spear-prosop.org/3079"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul petitioned Cyril of Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul petitioned Cyril of Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul petitioned Cyril of Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/3108"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +]}} diff --git a/relation/batch_query_person_relationship.sh b/relation/batch_query_person_relationship.sh new file mode 100644 index 000000000..cfd65de3d --- /dev/null +++ b/relation/batch_query_person_relationship.sh @@ -0,0 +1,151 @@ +#!/bin/bash + +# Batch query all relationship factoids with person information +# This script queries each relationship type separately to avoid overwhelming Neptune + +ENDPOINT="https://sparql.vanderbilt.edu/sparql" +INPUT_FILE="relationship_types.json" +OUTPUT_DIR="person_factoids_by_relationship" +COMBINED_OUTPUT="all_person_relation_factoids.json" + +# Create output directory +mkdir -p "$OUTPUT_DIR" + +# Extract relationship URIs from JSON +echo "Extracting relationship types..." +RELATIONSHIPS=$(jq -r '.results.bindings[].subject.value' "$INPUT_FILE") + +# Count total relationships +TOTAL=$(echo "$RELATIONSHIPS" | wc -l | tr -d ' ') +echo "Found $TOTAL relationship types to query" + +CURRENT=0 + +# Query each relationship separately +for rel_uri in $RELATIONSHIPS; do + CURRENT=$((CURRENT + 1)) + # Extract just the relationship name for filename + rel_name=$(echo "$rel_uri" | sed 's|.*/||') + echo "[$CURRENT/$TOTAL] Querying: $rel_name..." + + # Extract just the relationship name for filename + rel_name=$(echo "$rel_uri" | sed 's|.*/||') + + # Convert taxonomy URI to prop URI + prop_uri=$(echo "$rel_uri" | sed 's|/taxonomy/|/prop/|') + + + curl -G "$ENDPOINT" \ + --data-urlencode "query= +PREFIX sp: +PREFIX spr: +PREFIX schema: +PREFIX rdfs: +PREFIX swdt: + +SELECT DISTINCT ?factoid ?person ?label_en ?description ?relationship ?gender ?occupation ?source +FROM +FROM NAMED +WHERE { + # Get factoids from the three main sources + ?factoid spr:part-of-series ?source . + VALUES ?source { + + + + } + + # Get person relationships for this specific relationship type + ?person <$prop_uri> ?statementNode . + ?statementNode spr:reference-URL ?factoid . + + # Bind the relationship URI + BIND(<$rel_uri> AS ?relationship) + + # Get factoid description + OPTIONAL { + ?factoid schema:description ?description . + FILTER(LANG(?description) = \"en\") + } + + # Get person info from persons graph + OPTIONAL { + GRAPH { + ?person rdfs:label ?label_en . + FILTER(LANG(?label_en) = \"en\") + } + } + + OPTIONAL { + GRAPH { + ?person swdt:gender ?gender . + } + } + + OPTIONAL { + GRAPH { + ?person swdt:occupation ?occupation . + } + } +} +ORDER BY ?person ?factoid +LIMIT 10000 +" \ + -H "Accept: application/sparql-results+json" \ + > "$OUTPUT_DIR/factoids_${rel_name}.json" 2>/dev/null + + # Check if query succeeded + if [ $? -eq 0 ]; then + RESULT_COUNT=$(jq '.results.bindings | length' "$OUTPUT_DIR/factoids_${rel_name}.json" 2>/dev/null) + if [ -n "$RESULT_COUNT" ]; then + echo " ✓ Found $RESULT_COUNT factoids" + else + echo " ✗ Query failed or returned invalid JSON" + fi + else + echo " ✗ Curl failed" + fi + + # Sleep to avoid overwhelming Neptune + sleep 2 +done + +echo "" +echo "Combining all results into $COMBINED_OUTPUT..." + +# Combine all JSON files into one +# Start with the JSON structure +echo '{"head":{"vars":["factoid","person","label_en","description","relationship","gender","occupation","source"]},"results":{"bindings":[' > "$COMBINED_OUTPUT" + +FIRST=true +for file in "$OUTPUT_DIR"/factoids_*.json; do + if [ -f "$file" ]; then + # Extract bindings and append + BINDINGS=$(jq -c '.results.bindings[]' "$file" 2>/dev/null) + if [ -n "$BINDINGS" ]; then + while IFS= read -r binding; do + if [ "$FIRST" = true ]; then + echo "$binding" >> "$COMBINED_OUTPUT" + FIRST=false + else + echo ",$binding" >> "$COMBINED_OUTPUT" + fi + done <<< "$BINDINGS" + fi + fi +done + +# Close JSON structure +echo ']}}' >> "$COMBINED_OUTPUT" + +# Validate and pretty print the combined file +if jq empty "$COMBINED_OUTPUT" 2>/dev/null; then + jq '.' "$COMBINED_OUTPUT" > "${COMBINED_OUTPUT}.tmp" && mv "${COMBINED_OUTPUT}.tmp" "$COMBINED_OUTPUT" + TOTAL_FACTOIDS=$(jq '.results.bindings | length' "$COMBINED_OUTPUT") + echo "" + echo "✓ Complete! Total factoids collected: $TOTAL_FACTOIDS" + echo "✓ Combined output: $COMBINED_OUTPUT" + echo "✓ Individual files: $OUTPUT_DIR/" +else + echo "✗ Error: Combined JSON is invalid" +fi diff --git a/relation/batch_query_relationships.sh b/relation/batch_query_relationships.sh new file mode 100755 index 000000000..8c7474d1c --- /dev/null +++ b/relation/batch_query_relationships.sh @@ -0,0 +1,98 @@ +#!/bin/bash + +# Batch query all relationship factoids +# This script queries each relationship type separately to avoid overwhelming Neptune + +ENDPOINT="https://sparql.vanderbilt.edu/sparql" +INPUT_FILE="relationship_types.json" +OUTPUT_DIR="factoids_by_relationship" +COMBINED_OUTPUT="all_relation_factoids.json" + +# Create output directory +mkdir -p "$OUTPUT_DIR" + +# Extract relationship URIs from JSON (get the last part after the last /) +echo "Extracting relationship types..." +RELATIONSHIPS=$(jq -r '.results.bindings[].subject.value' "$INPUT_FILE" | sed 's|.*/||') + +# Count total relationships +TOTAL=$(echo "$RELATIONSHIPS" | wc -l | tr -d ' ') +echo "Found $TOTAL relationship types to query" + +CURRENT=0 + +# Query each relationship separately +for rel in $RELATIONSHIPS; do + CURRENT=$((CURRENT + 1)) + echo "[$CURRENT/$TOTAL] Querying: $rel..." + + curl -G "$ENDPOINT" \ + --data-urlencode "query= +PREFIX sp: +PREFIX spr: +PREFIX schema: + +SELECT DISTINCT ?factoid ?description ?source ('http://syriaca.org/taxonomy/$rel' AS ?relationship) +FROM +WHERE { + ?person sp:$rel ?statementNode . + ?statementNode spr:reference-URL ?factoid . + + OPTIONAL { ?factoid schema:description ?description } + OPTIONAL { ?factoid spr:part-of-series ?source } +} +ORDER BY ?factoid +" \ + -H "Accept: application/sparql-results+json" \ + > "$OUTPUT_DIR/factoids_${rel}.json" 2>/dev/null + + # Check if query succeeded + if [ $? -eq 0 ]; then + RESULT_COUNT=$(jq '.results.bindings | length' "$OUTPUT_DIR/factoids_${rel}.json" 2>/dev/null) + if [ -n "$RESULT_COUNT" ]; then + echo " ✓ Found $RESULT_COUNT factoids" + else + echo " ✗ Query failed or returned invalid JSON" + fi + else + echo " ✗ Curl failed" + fi + + # Sleep to avoid overwhelming Neptune + sleep 2 +done + +echo "" +echo "Combining all results into $COMBINED_OUTPUT..." + +# Combine all JSON files into one +# Start with the JSON structure +echo '{"head":{"vars":["factoid","description","source","relationship"]},"results":{"bindings":[' > "$COMBINED_OUTPUT" + +FIRST=true +for file in "$OUTPUT_DIR"/factoids_*.json; do + if [ -f "$file" ]; then + # Extract bindings and append + BINDINGS=$(jq -c '.results.bindings[]' "$file" 2>/dev/null) + if [ -n "$BINDINGS" ]; then + if [ "$FIRST" = true ]; then + echo "$BINDINGS" >> "$COMBINED_OUTPUT" + FIRST=false + else + echo ",$BINDINGS" >> "$COMBINED_OUTPUT" + fi + fi + fi +done + +# Close JSON structure +echo ']}}' >> "$COMBINED_OUTPUT" + +# Pretty print the combined file +jq '.' "$COMBINED_OUTPUT" > "${COMBINED_OUTPUT}.tmp" && mv "${COMBINED_OUTPUT}.tmp" "$COMBINED_OUTPUT" + +TOTAL_FACTOIDS=$(jq '.results.bindings | length' "$COMBINED_OUTPUT") +echo "" +echo "✓ Complete! Total factoids collected: $TOTAL_FACTOIDS" +echo "✓ Combined output: $COMBINED_OUTPUT" +echo "✓ Individual files: $OUTPUT_DIR/" diff --git a/relation/filter_factoids.js b/relation/filter_factoids.js new file mode 100644 index 000000000..d587eee49 --- /dev/null +++ b/relation/filter_factoids.js @@ -0,0 +1,47 @@ +const fs = require('fs'); +const readline = require('readline'); + +const inputFile = 'all_relation_factoids.json'; +const outputFile = 'filtered_relation_factoids.json'; + +const validSources = [ + 'https://spear-prosop.org/letters-severus', + 'https://spear-prosop.org/lives-eastern-saints', + 'https://spear-prosop.org/chronicle-edessa' +]; + +const rl = readline.createInterface({ + input: fs.createReadStream(inputFile), + crlfDelay: Infinity +}); + +const output = fs.createWriteStream(outputFile); +let firstLine = true; +let firstFactoid = true; + +rl.on('line', (line) => { + if (firstLine) { + output.write(line + '\n'); + firstLine = false; + return; + } + + try { + const factoid = JSON.parse(line); + if (factoid.source && validSources.includes(factoid.source.value)) { + if (!firstFactoid) { + output.write(','); + } + output.write(line + '\n'); + firstFactoid = false; + } + } catch (e) { + // Skip malformed lines + } +}); + +rl.on('close', () => { + output.write('\n]}}'); + output.end(); + console.log('Filtering complete!'); +}); diff --git a/relation/filtered_relation_factoids.json b/relation/filtered_relation_factoids.json new file mode 100644 index 000000000..b79d2fb7f --- /dev/null +++ b/relation/filtered_relation_factoids.json @@ -0,0 +1,1191 @@ +{"head":{"vars":["factoid","description","source","relationship"]},"results":{"bindings":[ +{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and the monk who stole were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus, Leontius and Aaron were acquainted."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/acquaintance-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-7"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Solon formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Eleusinius and Proclus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-25"},"description":{"xml:lang":"en","type":"literal","value":"Gregory of Nyssa, Bosporius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-29"},"description":{"xml:lang":"en","type":"literal","value":"Gregory Nazianzen, Bosporius and Theodore formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-40"},"description":{"xml:lang":"en","type":"literal","value":"Liberius and Athanasius, bishop of Alexandria formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-33"},"description":{"xml:lang":"en","type":"literal","value":"Isidore, Thomas, and Epimachus formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-33"},"description":{"xml:lang":"en","type":"literal","value":"Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-24"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3686 and Anonymi 3687 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-48"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 formed an alliance."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/alliance-with"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-29"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/baptized"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-3"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon was a bishop with authority over the bishop Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-6"},"description":{"xml:lang":"en","type":"literal","value":"Peter had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-6"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over the bishop(s) Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore had ecclesiastical authority over the bishop(s) Bosporius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-bishop"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-11"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Anonymi 3034."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-45"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Longinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Hesychius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Irenaeus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-10"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-6"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3038."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-8"},"description":{"xml:lang":"en","type":"literal","value":"Castor had ecclesiastical authority over Anonymi 3039."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-29"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-20"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-10"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3046."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-13"},"description":{"xml:lang":"en","type":"literal","value":"Procopius had ecclesiastical authority over Anonymi 3050."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-9"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-11"},"description":{"xml:lang":"en","type":"literal","value":"Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3062."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-26"},"description":{"xml:lang":"en","type":"literal","value":"Paul had ecclesiastical authority over Anonymi 3065."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-9"},"description":{"xml:lang":"en","type":"literal","value":"Victor had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-8"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios had ecclesiastical authority over Anonymous 3073."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-5"},"description":{"xml:lang":"en","type":"literal","value":"Philoxenus had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Romulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-11"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-15"},"description":{"xml:lang":"en","type":"literal","value":"Isaac had ecclesiastical authority over Anonymous 3083."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus was bishop over Eusebius and Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-7"},"description":{"xml:lang":"en","type":"literal","value":"John of Alexandria Minor had ecclesiastical authority over Anonymi 3085."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-5"},"description":{"xml:lang":"en","type":"literal","value":"Solon had ecclesiastical authority over Maximus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3090."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-21"},"description":{"xml:lang":"en","type":"literal","value":"Peter the Iberian had ecclesiastical authority over Timothy and Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-8"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Anonymous 3092."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon had ecclesiastical authority over Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-8"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-13"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-13"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Anonymous 3740"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3742 had ecclesiastical authority over Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-8"},"description":{"xml:lang":"en","type":"literal","value":"Stephen had ecclesiastical authority over Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-47"},"description":{"xml:lang":"en","type":"literal","value":"Stephen was a bishop with authority over Anonymi 3746"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 had ecclesiastical authority over Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-5"},"description":{"xml:lang":"en","type":"literal","value":"Isidore was bishop with authority over Silvanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-42"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius had ecclesiastical authority over Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-8"},"description":{"xml:lang":"en","type":"literal","value":"Didymus had ecclesiastical authority over Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-112"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-34"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-395"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 2235 had ecclesiastical authority over Anonymi 2218."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-97"},"description":{"xml:lang":"en","type":"literal","value":"Abraham had ecclesiastical authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Mark."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-32"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3637 had ecclesiastical authority over Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus had ecclesiastical authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-474"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius had ecclesiastical authority over Anonymi 2221."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over-monk"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus was a bishop with authority over Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-16"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-17"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-21"},"description":{"xml:lang":"en","type":"literal","value":"Isidore had ecclesiastical authority over Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3063."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had ecclesiastical authority over Anonymi 3079."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-12"},"description":{"xml:lang":"en","type":"literal","value":"Cassian had ecclesiastical authority over Aurelius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter was bishop over Eutychian"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-6"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was bishop with authority over Anonymous 3783."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-8"},"description":{"xml:lang":"en","type":"literal","value":"Eucharius had ecclesiastical authority over Firminus and Anonymi 3101."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 was a bishop with authority over John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-96"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid had ecclesiastical authority over Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bishop-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-11"},"description":{"xml:lang":"en","type":"literal","value":"The party of Hilarian and Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-41"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Hilarian brought legal charges or a petition against Eustace."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-23"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-22"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3050 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3051 brought legal charges or a petition against Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3046 brought legal charges or a petition against Procopius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-16"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Callistus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-10"},"description":{"xml:lang":"en","type":"literal","value":"Peter brought legal charges or a petition against Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3727 brought legal charges or a petition against Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-9"},"description":{"xml:lang":"en","type":"literal","value":"Musonius brought legal charges or a petition against Anonymi 3727."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-5"},"description":{"xml:lang":"en","type":"literal","value":"Paul brought legal charges or a petition against Hilarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 brought legal charges or a petition against Libanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3734 brought legal charges or a petition against Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3737 brought legal charges or a petition against Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-13"},"description":{"xml:lang":"en","type":"literal","value":"Stephen brought legal charges or a petition against Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3101 brought legal charges or a petition against Firminus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/bringer-of-legal-charges-against"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-27"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-5"},"description":{"xml:lang":"en","type":"literal","value":"Rufinus carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-9"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-10"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-21"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter from Severus of Antioch to Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-6"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-9"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-from"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-28"},"description":{"xml:lang":"en","type":"literal","value":"Leontius carried a letter from Celer to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-14"},"description":{"xml:lang":"en","type":"literal","value":"Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3091 carried a letter from Severus of Antioch to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-27"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 carried a letter from Severus of Antioch to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-24"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius carried a letter between Severus of Antioch and Anonymous 3738"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-7"},"description":{"xml:lang":"en","type":"literal","value":"Zenobius carried a letter from Severus of Antioch to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-55"},"description":{"xml:lang":"en","type":"literal","value":"Andrew carried a letter from Misael to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-52"},"description":{"xml:lang":"en","type":"literal","value":"A messenger came bearing a letter for Maria about the death of Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/carrier-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-11"},"description":{"xml:lang":"en","type":"literal","value":"Daniel was the child of the sibling of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-26"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of the sister of Justinian"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-234"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of a sibling of Ephrem."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of-sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-45"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Matronian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasius was the child of Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-18"},"description":{"xml:lang":"en","type":"literal","value":"Alypius was the child of Mitras."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-22"},"description":{"xml:lang":"en","type":"literal","value":"Mitras was the child of Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-64"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 were the children of Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3728 was the child of Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-7"},"description":{"xml:lang":"en","type":"literal","value":"Georgia was the child of Anastasia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-2"},"description":{"xml:lang":"en","type":"literal","value":"John was the child of Ammian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3787 was the daughter of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-4"},"description":{"xml:lang":"en","type":"literal","value":"Paul was the son of Vivian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-44"},"description":{"xml:lang":"en","type":"literal","value":"Maro was the child of Anonymous 3627 and Anonymous 3628."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-25"},"description":{"xml:lang":"en","type":"literal","value":"Maria was the child of Anonymi 3610 and Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-4"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian was the child of Šnq."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-7"},"description":{"xml:lang":"en","type":"literal","value":"Zwtʾ was the child of Abraham the Priest."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3692 was the child of Isaac and Anonymous 3690."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-29"},"description":{"xml:lang":"en","type":"literal","value":"Justin was the child of Vigilantia"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-10"},"description":{"xml:lang":"en","type":"literal","value":"Abgar VIII was the child of Maʿnu."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-114"},"description":{"xml:lang":"en","type":"literal","value":"Constantius II was the child of Constantine the Great."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-233"},"description":{"xml:lang":"en","type":"literal","value":"ʿAbshmayya was the child of Anonmyous 2234."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/child-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Irenaeus of Lyon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theodoret."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Sabellius the Libyan."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited negatively Hiba."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-negatively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter by Isidore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively a letter of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory the Theologian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3080-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyprian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Theophilus of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Socrates."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Dionysius of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3101-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy Aelurus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nyssa."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively the work of Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory of Nazianzus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3172-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Ignatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Timothy of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Athanasius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited positively Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited-positively"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-27"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-14"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Anonymous 3033 referenced Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-24"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-55"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-7"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-21"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-12"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-26"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-11"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-5"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Antipater referenced Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-18"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 refered to the writings of Anonymous 3082."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-20"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-33"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-34"},"description":{"xml:lang":"en","type":"literal","value":"A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-15"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Dionysios referenced Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-42"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch referenced Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch refered to the writings of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-13"},"description":{"xml:lang":"en","type":"literal","value":"A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Basil."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus cited Pope Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cited"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-20"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius had military command over Heliodorus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/command-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-21"},"description":{"xml:lang":"en","type":"literal","value":"Procopius commemorated Lampetius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus reluctantly permitted the commemoration of Epiphanius of Magydum."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-4"},"description":{"xml:lang":"en","type":"literal","value":"John and John commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-7"},"description":{"xml:lang":"en","type":"literal","value":"John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch commemorated Dioscorus I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3750 commemorated Patrick"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-75"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-76"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Maro."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/798-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/800-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/801-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Euphemia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-116"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-117"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-118"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zota."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abbi."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3760."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/809-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the poor man."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/810-8"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated a monk who left the monastery ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Zacharias as a holy person."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3762."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Addai."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/815-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/816-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/817-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-6"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Susan."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/821-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Malkha."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/822-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Elijah."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anonymous 3718."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/826-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/827-17"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated the Monks of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mare."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/829-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Aaron."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Leontius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/831-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-12"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Bassian."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/832-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Daniel."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-21"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-24"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mari ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-36"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-37"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Cyriacus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-38"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/834-39"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Barhadbshabba."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-13"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Isaac ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/837-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/838-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemmorated Anonymi 3771"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-40"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodosius"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-41"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Anthimus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-42"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sergius"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-43"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Severus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-44"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Paul"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-15"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated James."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-1"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Jacob Baradaeus"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore of Hirtha"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-11"},"description":{"xml:lang":"en","type":"literal","value":"After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Kashish."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-26"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Mary."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-28"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theophilos."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-10"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Priscus ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-16"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Sosiana ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-18"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated John ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-25"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Peter."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-27"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Photius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-1/"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus commemorated Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commemorates"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-3"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus communed with Castor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-27"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Anonymi 3065 shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-22"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3781 communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-4"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius and Indacus communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-16"},"description":{"xml:lang":"en","type":"literal","value":"Peter Mongus and Julian communed together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Timothy shared the Eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/commune-together"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3127 and Anonymous 3128 were cousins."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/cousin-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-65"},"description":{"xml:lang":"en","type":"literal","value":"Thomas descended from Ishakuni Bar Brʿy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/descendent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-109"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-110"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3675 had enmity for Abraham."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-28"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Leo."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-33"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3130."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 had enmity for Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Isidore as unphilosophic and deceitful."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3034 had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Epiphanius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-19"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria had enmity for Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Bisula."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-21"},"description":{"xml:lang":"en","type":"literal","value":"Musonius had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus described Anonymous 3778 as a beast of burden and a pack-ass."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-35"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3052 had enmity for Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3054."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-7"},"description":{"xml:lang":"en","type":"literal","value":"Aegilas had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-12"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus had enmity for Anonymi 3059."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-17"},"description":{"xml:lang":"en","type":"literal","value":"Paul had enmity for Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-24"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian had enmity for Paul."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Paul and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Eutyches."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3071."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Martyrius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3076."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah the Armenian and Anonymous 3780."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-23"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Anonymous 3781."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus urged Theotecnus to condemn Romanus in a synodical letter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymi 3086."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Elijah of Jerusalem."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Origen to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus found the doctrine of Eusebius of Caesarea to be faulty."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-30"},"description":{"xml:lang":"en","type":"literal","value":"Cyril wrote against Theodore of Mopsuestia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Flavian II of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-36"},"description":{"xml:lang":"en","type":"literal","value":"Liberius had enmity for Constantius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3102."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-31"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-20"},"description":{"xml:lang":"en","type":"literal","value":"Severus called Anatolius a false prophet."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Sergius, Diodore, Theodore, and Nestorius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-22"},"description":{"xml:lang":"en","type":"literal","value":"Leontius anathematized Isaiah"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-6"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3115 had enmity for Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Cyriac."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Flavian of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Proterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-38"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Theodotus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anonymous 3122."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Anatolius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-37"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch had enmity for Podalirius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-45"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus had enmity for Gaian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 had enmity for Heracliana."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-26"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana had enmity for Anonymous 3751."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-33"},"description":{"xml:lang":"en","type":"literal","value":"Joseph expressed enmity for John"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus expressed enmity for John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus had episcopal authority over Epiphanius, but he rebelled."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-52"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora had enmity for Agapetus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-19"},"description":{"xml:lang":"en","type":"literal","value":"Sergius had enmity for Anonymi 3686."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-49"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3689 had enmity for Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-42"},"description":{"xml:lang":"en","type":"literal","value":"Simeon of Beth Arsham had enmity for Hiba of Edessa."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-29"},"description":{"xml:lang":"en","type":"literal","value":"John had enmity for Thomas the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-159"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2211 had enmity for Anonymi 2208."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-314"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/enmity-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-25"},"description":{"xml:lang":"en","type":"literal","value":"Timothy and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-11"},"description":{"xml:lang":"en","type":"literal","value":"Libanius and Eusebius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3741, Stephen and Leontius were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-11"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and John were clergy together."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-31"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymi 3642 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/795-15"},"description":{"xml:lang":"en","type":"literal","value":"John the Nazarite and Anonymous 3679 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/818-3"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-72"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3665 were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and Theodore were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/840-6"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Jacob Baradaeus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-13"},"description":{"xml:lang":"en","type":"literal","value":"Eugene and Conon were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-16"},"description":{"xml:lang":"en","type":"literal","value":"Qashish and John of Ephesus were fellow clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-clergy"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-36"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan and Samuel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-43"},"description":{"xml:lang":"en","type":"literal","value":"Samuel, Jonathan and Anonymous 3669 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-39"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Leontius were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-10"},"description":{"xml:lang":"en","type":"literal","value":"Photius and Andrew were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-19"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-10"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora and Anonymous 3635 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/799-5"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3648 and Abraham the Recluse were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/806-4"},"description":{"xml:lang":"en","type":"literal","value":"Abi and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-7"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and Anonymi 3772 were monastics residing in the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-29"},"description":{"xml:lang":"en","type":"literal","value":"Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-42"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3662 and Suzanna were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-15"},"description":{"xml:lang":"en","type":"literal","value":"Leontius, Aaron and Qashish were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-12"},"description":{"xml:lang":"en","type":"literal","value":"Mari and John of Ephesus were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-16"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Daniel were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-50"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Qashish were fellow monastics."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-9"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Photius and Anonymi 3693 were monks at the same monastery."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/fellow-monastics"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-65"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-70"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Gregory Nazianzen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3134 was a follower of Arius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-24"},"description":{"xml:lang":"en","type":"literal","value":"Lampetius was a follower of Adelphius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3780 was a follower of Isaiah the Armenian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-15"},"description":{"xml:lang":"en","type":"literal","value":"Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-27"},"description":{"xml:lang":"en","type":"literal","value":"Cassian was a follower of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-29"},"description":{"xml:lang":"en","type":"literal","value":"Theodotus was a follower of John the Rhetor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-40"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Cyril of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-46"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was an alledged follower of Montanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-50"},"description":{"xml:lang":"en","type":"literal","value":"Isaiah was a follower of Mani."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of John Chrysostom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-21"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was a follower of Timothy II of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-10"},"description":{"xml:lang":"en","type":"literal","value":"Bar Nbyl was a follower of Mara Dada ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-21"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-31"},"description":{"xml:lang":"en","type":"literal","value":"Hananyaʾ was a follower of Habib."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/793-4"},"description":{"xml:lang":"en","type":"literal","value":"Habib was a follower of Bar Nbyl ."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/824-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3716 were followers of Anonymous 3717."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-22"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was a follower of Mishael."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/follower-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-34"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Oecumenius, comes had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-56"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and John had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-57"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Sergius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-58"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Peter had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-59"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Maximin had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-13"},"description":{"xml:lang":"en","type":"literal","value":"Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-24"},"description":{"xml:lang":"en","type":"literal","value":"Alexander, Musonius and Martyrius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-8"},"description":{"xml:lang":"en","type":"literal","value":"Musonius and Alexander had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-44"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Isidore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Epimachus had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-62"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Eusebius had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Theotecnus had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-13"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus and Thecla had a personal relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anastasia expressed deep affection for one another in their letters."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-6"},"description":{"xml:lang":"en","type":"literal","value":"Misael and Severus of Antioch had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-20"},"description":{"xml:lang":"en","type":"literal","value":"Isadora and Anonymous 3759 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Sergius bar Fathya had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Zechariah Rhetor were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-23"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-48"},"description":{"xml:lang":"en","type":"literal","value":"Euphemia and Anonymous 3615 were friends."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-20"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3760 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/811-4"},"description":{"xml:lang":"en","type":"literal","value":"Zacharias and John of Ephesus had a close friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/812-14"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus and Anonymous 3762 had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/830-21"},"description":{"xml:lang":"en","type":"literal","value":"Leontius and Aaron had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-24"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a friendship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/friendship-for"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3102 was the grandparent of Alypius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/grandparent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 held Anonymi 3633 as a house slave."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/house-slave-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-75"},"description":{"xml:lang":"en","type":"literal","value":"Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-48"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Justinian I and Theodora, Roman empress were part of the same household."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/household-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3078 heard a legal case against Antipater."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-17"},"description":{"xml:lang":"en","type":"literal","value":"The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch heard a legal case against Anonymous 3097."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-2"},"description":{"xml:lang":"en","type":"literal","value":"Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-19"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-9"},"description":{"xml:lang":"en","type":"literal","value":"Didymus heard a legal case against Sannus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/judge-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-3"},"description":{"xml:lang":"en","type":"literal","value":"Marinus and Anonymous 3782 had a family relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-14"},"description":{"xml:lang":"en","type":"literal","value":"Harfat and Anonymous 3764 were kinsmen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/kin-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-9"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian and Musonius were part of Anonymi 3723."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-34"},"description":{"xml:lang":"en","type":"literal","value":"Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of Anonymi 3072."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-15"},"description":{"xml:lang":"en","type":"literal","value":"Mark was part of Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch was part of the bishops who attended a synod in Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-10"},"description":{"xml:lang":"en","type":"literal","value":"Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-12"},"description":{"xml:lang":"en","type":"literal","value":"Theodore was part of Anonymi 3112."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-44"},"description":{"xml:lang":"en","type":"literal","value":"Alexander of Alexandria was part of Anonymi 3089."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-79"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3639 was part of Anonymi 3640."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-116"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3617 was part of Anonymi 3620."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/member-of-group"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-106"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-177"},"description":{"xml:lang":"en","type":"literal","value":"Abba was a monastic authority over Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-204"},"description":{"xml:lang":"en","type":"literal","value":"John was a monastic authority over Samuel, Jonathan and Anonymi 3677."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-47"},"description":{"xml:lang":"en","type":"literal","value":"Samuel was a monastic authority over Jonathan and Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-52"},"description":{"xml:lang":"en","type":"literal","value":"Jonathan was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-59"},"description":{"xml:lang":"en","type":"literal","value":"Job was a monastic authority over Anonymous 3669."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-79"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-85"},"description":{"xml:lang":"en","type":"literal","value":"Abraham was a monastic authority over Anonymous 3673."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-13"},"description":{"xml:lang":"en","type":"literal","value":"Jannia was a monastic authority over Anonymous 3033."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-4"},"description":{"xml:lang":"en","type":"literal","value":"Cosmas was monastic head over Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-7"},"description":{"xml:lang":"en","type":"literal","value":"Valeriana was a monastic authority over Anonymi 3035."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3738 was a monastic authority over Nonnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-10"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius was an archimandrite with authority over Anonymous 3784."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John was a monastic authority over Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-14"},"description":{"xml:lang":"en","type":"literal","value":"Andrew and Photius was a monastic authority over Anonymous 3730."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-30"},"description":{"xml:lang":"en","type":"literal","value":"Heracliana was a monastic authority over Anonymi 3752."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-15"},"description":{"xml:lang":"en","type":"literal","value":"Simeon was a monastic authority over Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-65"},"description":{"xml:lang":"en","type":"literal","value":"Maro was a monastic authority over Samuel and Anonymous 3665."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-78"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3667 was a monastic authority over Anonymous 3662."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/844-5"},"description":{"xml:lang":"en","type":"literal","value":"John of Ephesus was a monastic authority over Anonymous 3720."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/845-13"},"description":{"xml:lang":"en","type":"literal","value":"Cosmiana was a monastic authority over Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/monastic-head-over"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-41"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius ordained Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-57"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius of Samosata ordained Anonymi 3132."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-67"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3133 ordained Basil of Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3135 ordained Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-18"},"description":{"xml:lang":"en","type":"literal","value":"Flavian II of Antioch ordained Anonymous 3032."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3037 ordained Anonymi 3036."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-4"},"description":{"xml:lang":"en","type":"literal","value":"Hilarian ordained Anonymi 3074."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil ordained Anonymous 3087."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-9"},"description":{"xml:lang":"en","type":"literal","value":"Elijah of Jerusalem ordained Agapius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch ordained Anonymi 3100."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-27"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius ordained Isaiah presbyter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-57"},"description":{"xml:lang":"en","type":"literal","value":"Gregory the Wonderworker ordained Phaedimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-72"},"description":{"xml:lang":"en","type":"literal","value":"Paulinus ordained Evagrius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-74"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3757 ordained Flavian I of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3122 ordained Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-23"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer ordained Anonymi 3700."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-11"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-12"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-14"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-17"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-20"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-23"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-26"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-29"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-33"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus and others ordained Paul as bishop of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-34"},"description":{"xml:lang":"en","type":"literal","value":"In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-39"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-42"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-44"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-46"},"description":{"xml:lang":"en","type":"literal","value":"While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-51"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/841-53"},"description":{"xml:lang":"en","type":"literal","value":"Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/842-12"},"description":{"xml:lang":"en","type":"literal","value":"After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/ordained"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-71"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3670 was the parent of Abraham and Anonymous 3671."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-3"},"description":{"xml:lang":"en","type":"literal","value":"Conon was the father of Anonymous 3774"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-36"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3755 was the parent of Anonymous 3754."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-11"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 was the parent of Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-16"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3758 was the parent of Father Poemen ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3120 was the parent of Sergius bar Fathya."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-39"},"description":{"xml:lang":"en","type":"literal","value":"Podalirius was the parent of Anonymous 3123."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-25"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3624 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-26"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3625 was the parent of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3706 was the parent of Suzanna."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/820-7"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3696 was the parent of Mary the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-14"},"description":{"xml:lang":"en","type":"literal","value":"Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-11"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana acted as patron of John of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/patron-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-12"},"description":{"xml:lang":"en","type":"literal","value":"Abba, Severus of Antioch and Maximus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-10"},"description":{"xml:lang":"en","type":"literal","value":"Asterius and Anonymi 3129 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-15"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Flavian II of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-19"},"description":{"xml:lang":"en","type":"literal","value":"John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-45"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius and Timothy II of Alexandria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-51"},"description":{"xml:lang":"en","type":"literal","value":"Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-16"},"description":{"xml:lang":"en","type":"literal","value":"Theodore the Deacon asked Severus about the commands Jannia gave him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-9"},"description":{"xml:lang":"en","type":"literal","value":"Jannia, Theodore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-24"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3044 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Anonymous 3778 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-18"},"description":{"xml:lang":"en","type":"literal","value":"Theodosius and Entrechius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Apophon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3054 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-21"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus and Anonymi 3055 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Isidore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-8"},"description":{"xml:lang":"en","type":"literal","value":"Antiochus, Severus of Antioch and Antoninus had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-16"},"description":{"xml:lang":"en","type":"literal","value":"Hypatius and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymous 3056 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Eleutherius had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-16"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3061 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3060 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-13"},"description":{"xml:lang":"en","type":"literal","value":"Paul and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-23"},"description":{"xml:lang":"en","type":"literal","value":"Solon and Paul had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-13"},"description":{"xml:lang":"en","type":"literal","value":"John and Aelian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-20"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3051-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Neon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-11"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius, comes and Solon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-26"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3072 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3056-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-11"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-26"},"description":{"xml:lang":"en","type":"literal","value":"Stephen, Severus of Antioch and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-12"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3099 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3099 and Anonymi 3100 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-45"},"description":{"xml:lang":"en","type":"literal","value":"Isidore and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3103 and Simeon had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-10"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3114 and Severus of Antioch had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-7"},"description":{"xml:lang":"en","type":"literal","value":"Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-10"},"description":{"xml:lang":"en","type":"literal","value":"Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-54"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Julian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus and James had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751 and Zacharias had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-34/"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3751, Joseph, and John had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Philip had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus and Victor had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-9"},"description":{"xml:lang":"en","type":"literal","value":"Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-2"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/808-22"},"description":{"xml:lang":"en","type":"literal","value":"Simeon the Mountaineer and Anonymi 3701 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-17"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3768 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-20"},"description":{"xml:lang":"en","type":"literal","value":"Theodora and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3768 and Anonymous 3769 had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-10"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-8"},"description":{"xml:lang":"en","type":"literal","value":"John and Caesaria had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-18"},"description":{"xml:lang":"en","type":"literal","value":"John and Justinian had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-20"},"description":{"xml:lang":"en","type":"literal","value":"Mishael and Justinian had a professional relationhsip."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-21"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Mishael had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-23"},"description":{"xml:lang":"en","type":"literal","value":"John and Theodore had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/848-9"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Justinian had a professional relationship/"},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-133"},"description":{"xml:lang":"en","type":"literal","value":"Barsa and Constantius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-262"},"description":{"xml:lang":"en","type":"literal","value":"Arcadius and Honorios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-371"},"description":{"xml:lang":"en","type":"literal","value":"Leontios and Zeno had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-38"},"description":{"xml:lang":"en","type":"literal","value":"Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-404"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Euphemios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-438"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I and Macedonios II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-444"},"description":{"xml:lang":"en","type":"literal","value":"Vitalian and Anastasios I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-45"},"description":{"xml:lang":"en","type":"literal","value":"Bar Din and Bulid had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-459"},"description":{"xml:lang":"en","type":"literal","value":"Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-463"},"description":{"xml:lang":"en","type":"literal","value":"Patricius, Justin I and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-481"},"description":{"xml:lang":"en","type":"literal","value":"Asclepius and Euphrasios had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-489"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I, Euphrasios and Pawla had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-521"},"description":{"xml:lang":"en","type":"literal","value":"Justinian I and Justin I had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-553"},"description":{"xml:lang":"en","type":"literal","value":"Honorios and Theodosius II had a professional relationship."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/professional-relationship"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-12"},"description":{"xml:lang":"en","type":"literal","value":"Dionysius forced Basil to perform an unlawful ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-15"},"description":{"xml:lang":"en","type":"literal","value":"When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus defended Julian against charges that he attempted to mislead Anastasios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-26"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-17"},"description":{"xml:lang":"en","type":"literal","value":"Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-18"},"description":{"xml:lang":"en","type":"literal","value":"Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-19"},"description":{"xml:lang":"en","type":"literal","value":"Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-388"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-389"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-396"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-408"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Anastasios deposed Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-409"},"description":{"xml:lang":"en","type":"literal","value":"In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-420"},"description":{"xml:lang":"en","type":"literal","value":"In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-421"},"description":{"xml:lang":"en","type":"literal","value":"During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-482"},"description":{"xml:lang":"en","type":"literal","value":"In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-501"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-502"},"description":{"xml:lang":"en","type":"literal","value":"On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-504"},"description":{"xml:lang":"en","type":"literal","value":"On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-533"},"description":{"xml:lang":"en","type":"literal","value":"On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-542"},"description":{"xml:lang":"en","type":"literal","value":"In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/proximate-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-8"},"description":{"xml:lang":"en","type":"literal","value":"While in exile, Severus came into conflict with Julian of Halicarnassus."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/refuter-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-18"},"description":{"xml:lang":"en","type":"literal","value":"Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-261"},"description":{"xml:lang":"en","type":"literal","value":"In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-476"},"description":{"xml:lang":"en","type":"literal","value":"In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-545"},"description":{"xml:lang":"en","type":"literal","value":"The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-546"},"description":{"xml:lang":"en","type":"literal","value":"The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-554"},"description":{"xml:lang":"en","type":"literal","value":"The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-555"},"description":{"xml:lang":"en","type":"literal","value":"The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836"},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-79"},"description":{"xml:lang":"en","type":"literal","value":"The walls of Edessa were destroyed in 302/3 A. Gr. 614 ."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/same-event"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3001-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theognostus discussing Isaiah 61.1"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-6"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Abba on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3002-7"},"description":{"xml:lang":"en","type":"literal","value":"Abba sent a letter to Severus of Antioch on the subject of marriage and divorce."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3003-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-4"},"description":{"xml:lang":"en","type":"literal","value":"Constantine sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-74"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Constantine."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3004-88"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote letters on similar themes to Oecumenius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3005-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3006-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3007-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus about the marriage of Conon's daughter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3009-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus denouncing Timothy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3010-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore urging him to keep his monastic vows."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3012-4"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3013-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jannia concerning her leadership as archimandritess."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the the trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3015-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus asking about trinity and Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3016-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-12"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Dioscorus and Chaeremon"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus defending Peter Mongus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-6"},"description":{"xml:lang":"en","type":"literal","value":"In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-7"},"description":{"xml:lang":"en","type":"literal","value":"John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3017-8"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus wrote a letter to Severus indicating that he had received into communion Castor"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3018-6"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3019-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius wrote a letter to Severus about a trial of some presbyters."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-21"},"description":{"xml:lang":"en","type":"literal","value":"Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3020-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3021-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3022-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3023-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3024-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3025-2"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Solon disucssing episcopal authority and canon law."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3026-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicity gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3027-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Conon on the origin of human sinfulness."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-4"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Severus accusing him with performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3028-5"},"description":{"xml:lang":"en","type":"literal","value":"Peter sent a letter to Thomas accusing Severus of performing invalid ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3029-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3030-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3031-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-4"},"description":{"xml:lang":"en","type":"literal","value":"Timostratus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3033-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Timostratus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3034-2"},"description":{"xml:lang":"en","type":"literal","value":"Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-15"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent letters to Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3035-30"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3036-11"},"description":{"xml:lang":"en","type":"literal","value":"Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus replied to a letter of John on the subject of not communing with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-2"},"description":{"xml:lang":"en","type":"literal","value":"John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3038-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Entrechius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3039-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3053."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3040-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-5"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-6"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Anonymous 3056."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3042-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-10"},"description":{"xml:lang":"en","type":"literal","value":"Antoninus sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3043-15"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Antoninus carried by John the scholastic."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-12"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-15"},"description":{"xml:lang":"en","type":"literal","value":"Eleutherius sent a letter to Anonymi 3061."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3044-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3045-12"},"description":{"xml:lang":"en","type":"literal","value":"Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3046-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3725 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3047-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Victor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3048-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3072 sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Celer."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3049-6"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-11"},"description":{"xml:lang":"en","type":"literal","value":"Musonius sent a letter to Longinus seeking illicit gain."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3050-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3052-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-20"},"description":{"xml:lang":"en","type":"literal","value":"Anastasios I sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-22"},"description":{"xml:lang":"en","type":"literal","value":"Celer sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3053-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theotecnus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3054-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3055-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-13"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John III of Nicaea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-18"},"description":{"xml:lang":"en","type":"literal","value":"Alexander and Musonius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3057-7"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Alexander and Musonius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3058-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3077."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3059-3"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3080 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3060-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3084."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the Fathers on the subject of baptism and ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-14"},"description":{"xml:lang":"en","type":"literal","value":"the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3061-25"},"description":{"xml:lang":"en","type":"literal","value":"Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3062-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John of Alexandria Minor."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-11"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Severus about uncanonical ordinations."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-4"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3063-7"},"description":{"xml:lang":"en","type":"literal","value":"Theotecnus wrote a letter to Severus about the theological erros of Romanus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3064-2"},"description":{"xml:lang":"en","type":"literal","value":"Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3065-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dionysios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Solon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3066-12"},"description":{"xml:lang":"en","type":"literal","value":"Solon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3067-4"},"description":{"xml:lang":"en","type":"literal","value":"Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3068-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3066."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eustathios."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3069-5"},"description":{"xml:lang":"en","type":"literal","value":"Eustathios sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3070-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3072-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3080."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3073-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3096."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3075-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-11"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3076-4"},"description":{"xml:lang":"en","type":"literal","value":"Aurelius sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Stephen on the subject of reading the lives of saints."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3077-2"},"description":{"xml:lang":"en","type":"literal","value":"Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3078-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Hypatius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3081-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3738."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymous 3739."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-4"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3739 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3083-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eutychian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-18"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Conon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Anonymi 3741."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3085-22"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3086-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3087-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Cassian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3088-15"},"description":{"xml:lang":"en","type":"literal","value":"Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3089-3"},"description":{"xml:lang":"en","type":"literal","value":"Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3090-2"},"description":{"xml:lang":"en","type":"literal","value":"Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3091-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3092-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philoxenos of Mabbug."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3093-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Nonnus on the disobedience of Pelagius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3094-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Eucharius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3095-2"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-1"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3096-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3097-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-15"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3098-9"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Dioscorus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3100-2"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3103-4"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Simeon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3104-6"},"description":{"xml:lang":"en","type":"literal","value":"Simeon sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Philip."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3106-5"},"description":{"xml:lang":"en","type":"literal","value":"Philip sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-18"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-37"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Epimachus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-41"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-42"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-43"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-49"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-2"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-44"},"description":{"xml:lang":"en","type":"literal","value":"Cyril of Alexandria sent a letter to Eusebius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3109-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-13"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus about Ascalon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3110-14"},"description":{"xml:lang":"en","type":"literal","value":"John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3112-8"},"description":{"xml:lang":"en","type":"literal","value":"Theodore sent a letter to Thomas."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3113-2"},"description":{"xml:lang":"en","type":"literal","value":"Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-11"},"description":{"xml:lang":"en","type":"literal","value":"Dionysios sent a letter to Fabius."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3114-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Proclus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-12"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3116."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-14"},"description":{"xml:lang":"en","type":"literal","value":"Basil of Caesarea sent a letter to Anonymi 3117."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-15"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3115-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-27"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Theodore."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Thecla."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3117-8"},"description":{"xml:lang":"en","type":"literal","value":"Thecla sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3118-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3119-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Didymus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3120-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3121-2"},"description":{"xml:lang":"en","type":"literal","value":"John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3122-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3123-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3124-8"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-4"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3126-3"},"description":{"xml:lang":"en","type":"literal","value":"Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Georgia."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3128-2"},"description":{"xml:lang":"en","type":"literal","value":"Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3129-2"},"description":{"xml:lang":"en","type":"literal","value":"John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-10"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Sergius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-14"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Marion."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Julian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3130-6"},"description":{"xml:lang":"en","type":"literal","value":"Julian sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3131-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3132-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3133-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3134-5"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Photius and Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3135-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3136-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-12"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-13"},"description":{"xml:lang":"en","type":"literal","value":"It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3137-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Isidora."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3138-4"},"description":{"xml:lang":"en","type":"literal","value":"Isidora sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3139-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Misael."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-5"},"description":{"xml:lang":"en","type":"literal","value":"Misael sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew on the subject of ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-16"},"description":{"xml:lang":"en","type":"literal","value":"John bar Aphthonia sent a letter to Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3141-2"},"description":{"xml:lang":"en","type":"literal","value":"Severus received a letter from Andrew."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3126 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-46"},"description":{"xml:lang":"en","type":"literal","value":"Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3143-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-4"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3144-5"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3145-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3148-17"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3750 sent a letter to Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3149-1"},"description":{"xml:lang":"en","type":"literal","value":"Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3150-3"},"description":{"xml:lang":"en","type":"literal","value":"Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3151-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius on the natures of Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3152-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Simus discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eusebius discussing the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3153-2"},"description":{"xml:lang":"en","type":"literal","value":"Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3154-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3155-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3156-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron perfection existing only in God."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3157-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Maron on the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3158-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Eleusinius discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3159-2"},"description":{"xml:lang":"en","type":"literal","value":"Eleusinius sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3160-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3161-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Entrechius discussing Christology and the Incarnation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3162-2"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3163-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3164-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing the union of natures in Christ."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3165-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas discussing purity and fasting."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3167-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore on the subject Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isidore discussing the Trinity and opposition to heresy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3168-2"},"description":{"xml:lang":"en","type":"literal","value":"Isidore sent a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John and John discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3169-2"},"description":{"xml:lang":"en","type":"literal","value":"John and John sent a letter to Severus discussing Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3170-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3173-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore discussing the Trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3174-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3175-2"},"description":{"xml:lang":"en","type":"literal","value":"Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3176-2"},"description":{"xml:lang":"en","type":"literal","value":"Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3178-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3179-4"},"description":{"xml:lang":"en","type":"literal","value":"Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3180-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3181-2"},"description":{"xml:lang":"en","type":"literal","value":"Isaac the Scholastic sent a letter to Severus about Christology."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3182-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3183-2"},"description":{"xml:lang":"en","type":"literal","value":"The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3185-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3186-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3187-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3188-3"},"description":{"xml:lang":"en","type":"literal","value":"Urban wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3189-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-12"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3190-4"},"description":{"xml:lang":"en","type":"literal","value":"Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3191-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3192-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3193-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3194-2"},"description":{"xml:lang":"en","type":"literal","value":"Dioscorus I wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3195-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philip discussing sin, repentance, and the monastic life."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3196-4"},"description":{"xml:lang":"en","type":"literal","value":"Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3197-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3198-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria Hypatissa wrote a letter to Severus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3199-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3200-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3202-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3207-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3208-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3209-4"},"description":{"xml:lang":"en","type":"literal","value":"Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3210-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3211-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3212-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3213-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3214-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3215-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3216-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Victor discussing the gentle correction of error."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3217-5"},"description":{"xml:lang":"en","type":"literal","value":"Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3218-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3219-3"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3220-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3221-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3222-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius discussing good, evil, the law, and free will."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3223-2"},"description":{"xml:lang":"en","type":"literal","value":"Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3224-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3225-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3226-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3227-2"},"description":{"xml:lang":"en","type":"literal","value":"Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3228-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3229-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3230-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3231-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3232-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3233-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3234-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Eugenia on the benefits of overcoming the passions."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Simus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3235-3"},"description":{"xml:lang":"en","type":"literal","value":"Simus wrote a letter to Severus discussing the creation of human bodies and souls."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3236-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3237-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3238-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3239-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3241-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3242-1"},"description":{"xml:lang":"en","type":"literal","value":"Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-106"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Anonymous 3242."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-107"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress sent a letter to Stephen."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-13"},"description":{"xml:lang":"en","type":"literal","value":"Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sender-of-letter-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3041-15"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3056 was the sibling of the parent of Antoninus."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of-parent-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/10510-72"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Anonymous 3671 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-16"},"description":{"xml:lang":"en","type":"literal","value":"Serenus and Julian were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3099-22"},"description":{"xml:lang":"en","type":"literal","value":"Peter and Severus of Antioch were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3125-7"},"description":{"xml:lang":"en","type":"literal","value":"Anastasia and Innocent were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3142-34"},"description":{"xml:lang":"en","type":"literal","value":"Jacob the Apostle and Judas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-11"},"description":{"xml:lang":"en","type":"literal","value":"Abraham and Maron were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/804-12"},"description":{"xml:lang":"en","type":"literal","value":"Mary and Euphemia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-81"},"description":{"xml:lang":"en","type":"literal","value":"Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-89"},"description":{"xml:lang":"en","type":"literal","value":"Cosmo and Thomas were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/807-25"},"description":{"xml:lang":"en","type":"literal","value":"James and Anonymous 3760 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-21"},"description":{"xml:lang":"en","type":"literal","value":"John and Ephrem of Amida were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/814-3"},"description":{"xml:lang":"en","type":"literal","value":"Addai and Abraham were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/819-77"},"description":{"xml:lang":"en","type":"literal","value":"Samuel and Anonymous 3667 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-10"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Elijah were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-11"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/823-12"},"description":{"xml:lang":"en","type":"literal","value":"Elijah and Anonymi 3715 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/839-27"},"description":{"xml:lang":"en","type":"literal","value":"Justinian and Vigilantia were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/847-14"},"description":{"xml:lang":"en","type":"literal","value":"Peter, Anonymous 3654 and Anonymous 3655 were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-145"},"description":{"xml:lang":"en","type":"literal","value":"Valentinian I and Valens were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-232"},"description":{"xml:lang":"en","type":"literal","value":"Anonmyous 2234 and Ephrem were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/8559-70"},"description":{"xml:lang":"en","type":"literal","value":"Lucius Verus and Commodus were siblings."},"source":{"type":"uri","value":"https://spear-prosop.org/chronicle-edessa"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/sibling-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3107-14"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3744 enslaved Anonymous 3745."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/803-8"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3765 were enslaved by Anonymous 3764 and Harfat."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/slave-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3008-2"},"description":{"xml:lang":"en","type":"literal","value":"Alypius and Anonymous 3775 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3011-7"},"description":{"xml:lang":"en","type":"literal","value":"Theodore and Anonymous 3776 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3014-10"},"description":{"xml:lang":"en","type":"literal","value":"Oecumenius and Anonymous 3785 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3037-3"},"description":{"xml:lang":"en","type":"literal","value":"John and Anonymous 3777 were married."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3082-8"},"description":{"xml:lang":"en","type":"literal","value":"were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3084-13"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3098 and Anonymous 3097 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3127-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3119 and Anastasia were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-21"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3121 and Anonymous 3120 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3140-33"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3123 and Anatolius were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-41"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3627 and Anonymous 3628 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/796-54"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3629 and Anonymous 3632 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/802-105"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3242 and Khusrau I Anushirwan were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/805-44"},"description":{"xml:lang":"en","type":"literal","value":"Theodora, Roman empress and Justinian I were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/813-11"},"description":{"xml:lang":"en","type":"literal","value":"Thomas the Armenian and Anonymous 3233 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/836-3"},"description":{"xml:lang":"en","type":"literal","value":"Isaac and Anonymous 3690 were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/843-9"},"description":{"xml:lang":"en","type":"literal","value":"Theophilos and Mary were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/846-5"},"description":{"xml:lang":"en","type":"literal","value":"Sosiana and John were spouses."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/spouse-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3111-65"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3756 studied under Isaiah."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3116-27"},"description":{"xml:lang":"en","type":"literal","value":"Polycarp was a disciple of John the Evangelist"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-75"},"description":{"xml:lang":"en","type":"literal","value":"Hananya studied under Zeʿora."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/794-80"},"description":{"xml:lang":"en","type":"literal","value":"Zeʿora studied under Anonymous 3634."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/797-22"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3698 studied under Sergius."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/828-10"},"description":{"xml:lang":"en","type":"literal","value":"Mara the Solitary studied under Paul the Mourner."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/833-6"},"description":{"xml:lang":"en","type":"literal","value":"Mari studied under Mara of Beth Urtaye."},"source":{"type":"uri","value":"https://spear-prosop.org/lives-eastern-saints"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/student-of"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3032-12"},"description":{"xml:lang":"en","type":"literal","value":"Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3071-9"},"description":{"xml:lang":"en","type":"literal","value":"Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch."},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3079-24"},"description":{"xml:lang":"en","type":"literal","value":"Julian made a legal petition to Heliodorus"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} +,{"factoid":{"type":"uri","value":"https://spear-prosop.org/3108-34"},"description":{"xml:lang":"en","type":"literal","value":"Paul petitioned Cyril of Alexandria"},"source":{"type":"uri","value":"https://spear-prosop.org/letters-severus"},"relationship":{"type":"literal","value":"http://syriaca.org/taxonomy/submitter-of-legal-petition-to"}} + +]}} \ No newline at end of file diff --git a/relation/get_all_relationships.sh b/relation/get_all_relationships.sh new file mode 100644 index 000000000..7572ad68f --- /dev/null +++ b/relation/get_all_relationships.sh @@ -0,0 +1,94 @@ +# Two-step process to get all relationship factoids + +## Step 1: Get all relationship types from the menu + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ + --data-urlencode 'query= +PREFIX skos: + +SELECT DISTINCT ?subject ?label +WHERE { + VALUES (?collection) { + () + () + } + ?collection skos:member ?subject . + ?subject skos:prefLabel ?label . +} +ORDER BY ?label +' \ +-H "Accept: application/sparql-results+json" > relationship_types.json +``` + +## Step 2: Get all factoids for those relationships + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ + --data-urlencode 'query= +PREFIX sp: +PREFIX spr: +PREFIX schema: +PREFIX skos: + +SELECT DISTINCT ?factoid ?description ?source +FROM +WHERE { + # Get all relationship types + VALUES (?collection) { + () + () + } + ?collection skos:member ?relationshipType . + + # Convert taxonomy URI to prop URI + BIND(IRI(REPLACE(STR(?relationshipType), "/taxonomy/", "/prop/")) AS ?relationshipProp) + + # Find factoids with this relationship + ?person ?relationshipProp ?statementNode . + ?statementNode spr:reference-URL ?factoid . + + OPTIONAL { ?factoid schema:description ?description } + OPTIONAL { ?factoid spr:part-of-series ?source } +} +ORDER BY ?factoid +LIMIT 20000 +' \ +-H "Accept: application/sparql-results+json" > relation_factoids.json +``` + +## Alternative: Use discovered relationship properties directly, times out and needs source filter + +If Step 2 returns empty, use the properties we discovered from your diagnostic query: + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ + --data-urlencode 'query= +PREFIX sp: +PREFIX spr: +PREFIX schema: + +SELECT DISTINCT ?factoid ?description ?source ?relationshipProp +FROM +WHERE { + ?person ?relationshipProp ?statementNode . + ?statementNode spr:reference-URL ?factoid . + + # Filter to only relationship properties + FILTER(CONTAINS(STR(?relationshipProp), "syriaca.org/prop/")) + FILTER(CONTAINS(STR(?relationshipProp), "syriaca.org/taxonomy/")) + + FILTER(?relationshipProp NOT IN (sp:gender, sp:occupation, sp:birth, sp:death, + sp:residence, sp:event-keyword, sp:birth-place, + sp:death-place, sp:event-place, sp:event-participant, sp:name:variant)) + + OPTIONAL { ?factoid schema:description ?description } + OPTIONAL { ?factoid spr:part-of-series ?source } +} +ORDER BY ?factoid +LIMIT 20000 +' \ +-H "Accept: application/sparql-results+json" > relation_factoids.json +``` + +The alternative query is more reliable since it uses the actual properties that exist in the database. diff --git a/relation/person.json b/relation/person.json new file mode 100644 index 000000000..e2a4eb50e --- /dev/null +++ b/relation/person.json @@ -0,0 +1,7853 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/821-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Adam" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Adam is the first man, according to the Bible, and he is commemorated in the second and third chapter of Genesis." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3008-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2591" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Addressee of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3186-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2598" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Jerusalem" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/co-authors" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2208" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-167" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2209" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2209" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-159" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2211" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-158" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2211" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-183" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2212" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2212" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-384" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2217" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2217" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-434" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2219" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2219" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2220" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2220" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-543" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2222" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2222" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-71" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2223" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2223" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2224" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2224" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-373" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2225" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2225" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2226" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2226" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-530" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2227" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2228" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2228" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2231" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2231" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2233" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2233" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-314" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2314" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-313" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2314" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3029-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3035" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3031-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3036" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3031-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3037" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3037" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3031-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3037" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3037" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/submitter-of-legal-petition-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3039" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3040" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3033-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3041" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3041" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3043" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3043" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/judge-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3043" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3044" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3044" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3044" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3044" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3045" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3046" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3046" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3047" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/member-of-group" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3047" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3048" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/member-of-group" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3048" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3049" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/member-of-group" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-32" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3049" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3050" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3050" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3051" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3051" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3051" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3051" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-35" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3052" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3052" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3052" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3052" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3054" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3054" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3054" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3054" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3055" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3055" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3059" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3059" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3062" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/submitter-of-petition-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3062" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/friendship-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3062" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3063" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/submitter-of-petition-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3063" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/friendship-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3063" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3065" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3065" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/commune-together" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3065" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3065" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3071" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3075" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3075" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3077" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3078" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/judge-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3078" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3079" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/cited" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3073-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3084" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3084" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3085" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3085" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3085" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3085" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3065-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3086" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3086" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-from" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3095" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3095" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3073-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3096" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3096" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3100" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3100" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3100" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3100" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3101" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3101" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3103" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3103" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3103" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3110" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3110" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3111" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3111" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3112" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3112" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3113" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3113" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3115" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3115" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3116" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3116" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3117" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3117" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3124" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3124" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3129" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3129" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3129" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3129" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-32" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3130" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3130" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3131" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3131" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-50" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3131" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3131" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-56" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3132" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3132" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3133" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3133" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-66" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3133" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3133" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3134" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3134" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/follower-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3134" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3135" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3135" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3135" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3135" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3136" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3136" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-28" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3602" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3602" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-58" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3604" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3604" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3608" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3608" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3609" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3609" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3611" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3611" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3612" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3612" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3613" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3613" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-58" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3618" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-52" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3618" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3620" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-89" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3622" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3622" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3633" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3633" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/house-slave-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-60" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3633" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3633" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3636" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3636" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3640" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3640" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-28" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3641" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3641" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3642" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3642" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3642" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3642" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3643" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3643" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3644" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3644" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-60" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3646" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3646" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/799-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3648" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3648" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/799-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3648" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3648" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/798-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3657" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3657" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/826-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3685" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3685" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3686" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3686" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/alliance-with" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3687" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3687" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/alliance-with" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3692" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3693" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3693" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "These anonymous persons dwell in the Monastery of the Fathers, in the Enanton of Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3699" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3699" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3702" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3702" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3704" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3704" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3706" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/parent-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3706" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3706" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two monastic sisters who were siblings of Elijah and Theodore" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two monastic sisters who were siblings of Elijah and Theodore" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two monastic sisters who were siblings of Elijah and Theodore" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two monastic sisters who were siblings of Elijah and Theodore" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3006-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3722" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3722" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Members of the Senate in Constantinople to whom Severus of Antioch wrote a letter sometime between 508 and 511" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3006-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3722" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3722" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Members of the Senate in Constantinople to whom Severus of Antioch wrote a letter sometime between 508 and 511" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3723" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3723" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The party of Hilarian and Musonius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3723" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3723" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The party of Hilarian and Musonius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3727" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3727" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The bishops under Severus who were accused by Musonius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3727" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3727" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The bishops under Severus who were accused by Musonius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3150-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3729" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Female monastics who exchanged letters with Severus of Antioch; his letter is missing an incipit so the names of the addressees are unknown" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The clergy of Isauria who deposed Paul of Olba" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bishop-over-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The clergy of Isauria who deposed Paul of Olba" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/judge-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The clergy of Isauria who deposed Paul of Olba" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3734" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3734" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The clergy of Tarsus who brought charges against Julian the presbyter sometime around 515-518." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bringer-of-legal-charges-against" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3741" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The clergy of Antaradus sometime between 513 and 518; correspondents of Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3750" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipients of a letter from Severus of Antioch, the incipit of which is no longer extant" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/commemorates" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3750" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipients of a letter from Severus of Antioch, the incipit of which is no longer extant" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3756" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The sons of Eusebius the Count" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/student-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3756" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The sons of Eusebius the Count" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-74" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3757" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3757" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The bishops of the East who ordained Flavian I of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3765" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3765" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The enslaved men and women on the estate owned by Anonymous 3764 and Harfat." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/slave-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3765" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3765" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The enslaved men and women on the estate owned by Anonymous 3764 and Harfat." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-11/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3766" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3766" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The hired servants on the estate owned by Anonymous 3764 and Harfat." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/838-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3771" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The holy community of non-Chalcedonians that the Empress Theodora gathered together in Constantinople" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3183-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3786" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Presbyters of Alexandria who criticized Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/810-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 1932" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/810-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 1932" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3065-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3087" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3087" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3128" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3128" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/cousin-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3128" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3128" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-54" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3616" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3616" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-52" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3616" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3616" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-116" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3617" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3617" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/member-of-group" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-50" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3617" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3617" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3624" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3624" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/parent-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3625" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3625" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/parent-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/837-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3653" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3654" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A brother of Peter , the bishop of Smyrna . A layman and patrician who was a slave owner who taught the slaves the Psalms and hours of prayers and service. He spent the last 9 years of his life in Smyrna with his extended family." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3654" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A brother of Peter , the bishop of Smyrna . A layman and patrician who was a slave owner who taught the slaves the Psalms and hours of prayers and service. He spent the last 9 years of his life in Smyrna with his extended family." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3655" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A sister of Peter , the bishop of Smyrna. A lay woman and patrician who was a slave owner who taught the slaves the Psalms and hours of prayers and service. She spent the last years of her life in Smyrna with her extended household. She outlived her brothers. She was living at the time of John of Ephesus' writing his Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3655" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A sister of Peter , the bishop of Smyrna. A lay woman and patrician who was a slave owner who taught the slaves the Psalms and hours of prayers and service. She spent the last years of her life in Smyrna with her extended household. She outlived her brothers. She was living at the time of John of Ephesus' writing his Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3656" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3656" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The enslaved persons were owned by the brother and sister of Peter, bishop of Smyrna. They were taught the Psalms and the hours of the prayers and the service." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3656" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3656" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The enslaved persons were owned by the brother and sister of Peter, bishop of Smyrna. They were taught the Psalms and the hours of the prayers and the service." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3658" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3658" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-35" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3661" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3661" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3662" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3662" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-56" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3664" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3672" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3672" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/household-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-73" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3672" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3672" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3678" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3678" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3679" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3679" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3679" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3679" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3680" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3680" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/826-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3684" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3684" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3690" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/829-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3691" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3691" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-40" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3694" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3694" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3695" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/820-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3696" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3696" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/parent-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/820-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3696" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3696" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/822-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3697" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-34/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-32" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bishop-over-monk" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/bishop-over" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3772" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3772" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A monk and disciple of Zacharias" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3008-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3775" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3775" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The wife of Alypius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3777" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The wife of the comes John" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3777" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The wife of the comes John" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3780" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3780" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Someone denounced by Severus of Antioch for performing uncanonical ordinations" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/follower-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A kinsman of Marinus. Severus recommended that Stephen of Apamea make his a deacon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-from" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A kinsman of Marinus. Severus recommended that Stephen of Apamea make his a deacon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A kinsman of Marinus. Severus recommended that Stephen of Apamea make his a deacon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/kin-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3090-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3783" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "An enslaved man" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3785" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3785" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The spouse of Oecumenius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3787" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The daughter of Georgia" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3787" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The daughter of Georgia" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Presbyter of Alexander whose ideas started the Arian controversy" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arius was a priest in Alexandria in the early fourth century and a famous propagator of the doctrine that Christ was not equal to God the Father, but subordinated to him, hence this doctrine is called Arianism. He and his teachings were condemned at the council of Nicaea in 325, yet some of his ideas remained influential especially in the east of the Roman Empire and among Germanic tribes converted to Christianity in the fourth century." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3789" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Carrier of a letter between Solon and Severus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-from" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3789" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Carrier of a letter between Solon and Severus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/carrier-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2618" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Berenice" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A martyr who (along with the martyrs Domnina and Prosdocia ) threw herself into the waves of the Euphrates when threatened." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/400" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Braun , Oskar" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Syriac scholar, professor at the University of Würzburg, Germany." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Master of the Offices and recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Master of the Offices and recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Master of the Offices and recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Master of the Offices and recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-70" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2246" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Commodus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3007-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Conon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A silentiary and recipient of a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/parent-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2637" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Domnina" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A martyr who (along with the martyrs Prosdocia and Berenice ) threw herself into the waves of the Euphrates when threatened." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Seleucia in Isauria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3214" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hereth Bar Gabala" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arab King" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore of Pelusium" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Greek author of 2000 short letters." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore of Pelusium" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Greek author of 2000 short letters." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2668" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "James" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A kometianos and associate of Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A tribune and a correspondent of Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A tribune and a correspondent of Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3135-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2683" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The son of Ammian who requested that Severus of Antioch choose his name" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3007-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2685" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A correspondent of Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2675" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The son of Aphthonia, archimandrite of Kenneshre" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A presbyter; member of a distinguished family in Amida" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A presbyter; member of a distinguished family in Amida" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/817-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Hephaestopolis" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Hephaestopolis features in John of Ephesus' Lives of the Eastern Saints. He was a leader in the resistance of eastern bishops against the council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Hephaestopolis" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Hephaestopolis features in John of Ephesus' Lives of the Eastern Saints. He was a leader in the resistance of eastern bishops against the council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Roman Emperor, successor of Justinian and his sister's son" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Roman Emperor, successor of Justinian and his sister's son" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of-sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II was Roman emperor from 565 to 578. His mental illness increasingly affected his ability to rule and necessitated the installation of Tiberius as Caesar in late 574. Joh. Eph., EH 1-3, remembers Justin as a persecutor of the miaphysites in the early 570s and interprets his illness as divine punishment for his deeds." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II was Roman emperor from 565 to 578. His mental illness increasingly affected his ability to rule and necessitated the installation of Tiberius as Caesar in late 574. Joh. Eph., EH 1-3, remembers Justin as a persecutor of the miaphysites in the early 570s and interprets his illness as divine punishment for his deeds." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of-sibling-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: This could be Conon, the bishop of Tarsus , one of many bishops consecrated by Jacob Baradaeus in 543 for the emerging Miaphysite church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/ordained" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/821-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Malka" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Malka is a monk commemorated in the Lives of the Eastern Saints by John of Ephesus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/821-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Malka" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Malka is a monk commemorated in the Lives of the Eastern Saints by John of Ephesus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1876" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari is commemorated in the Lives of the Eastern Saints by John of Ephesus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/student-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1876" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari is commemorated in the Lives of the Eastern Saints by John of Ephesus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1876" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari is commemorated in the Lives of the Eastern Saints by John of Ephesus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-monastics" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian, spouse of Thomas the Armenian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian, spouse of Thomas the Armenian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian, spouse of Thomas the Armenian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A chartularius who wrote to Severus of Antioch requesting that one of his kinsmen be included among the clergy of Apamea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A chartularius who wrote to Severus of Antioch requesting that one of his kinsmen be included among the clergy of Apamea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/kin-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Berytus and a Eutychian according to Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/commune-together" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Berytus and a Eutychian according to Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/follower-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary, Mother of God" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary, mother of Jesus, features prominently in all the Syriac liturgical and literary traditions." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary, Mother of God" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: The blessed virgin Mary, mother of God." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/827-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Monks of Amida" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/827-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Monks of Amida" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A patrician mentioned in a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/enmity-for" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A patrician mentioned in a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A patrician mentioned in a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A patrician mentioned in a letter from Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul of Samosata" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Antioch who was deprived of his see Synod of Antioch because of heretical teachings" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul of Samosata" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul was a bishop of Antioch in the 260s and a controversial theologian. He taught that Jesus had been born a mere man and been infused with the divine spirit only at his baptism. Denying the innate divine nature of Jesus, he was later framed as a precursor of Arianism and Nestorianism and condemned as a heretic." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/816-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul the Apostle" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The biblical apostle, Paul the Apostle , author of much of the New Testament. In hagiography, Paul is often commemorated with Thecla ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/816-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul the Apostle" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The biblical apostle, Paul the Apostle , author of much of the New Testament. In hagiography, Paul is often commemorated with Thecla ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter Mongus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/commune-together" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/844-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Priscus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Priscus is commemorated in Priscus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 122-123v ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/844-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Priscus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Priscus is commemorated in Priscus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 122-123v ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A holy man discussed by John of Ephesus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2708" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Prosdocia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A martyr who (along with the martyrs Domnina and Berenice ) threw herself into the waves of the Euphrates when threatened." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Satan" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Satan" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire is monk from Amida and features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire is monk from Amida and features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Solitaire is monk from Amida and features in John of Ephesus' Lives of the Eastern Saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/professional-relationship" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/patron-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana is commemorated in John and Sosiana (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 125v-127 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3077-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A reader and a correspondent of Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos is commemorated in Theophilus and Mary (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 7190, f. 333v-336v and Add. 14730, f. 112-121 (mutilé du début) ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3162-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Syncellus of Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus is commemorated in Thomas of Damascus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 82v-83 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus is commemorated in Thomas of Damascus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 82v-83 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus is commemorated in Thomas of Damascus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 82v-83 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/fellow-clergy" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus is commemorated in Thomas of Damascus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 82v-83 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus is commemorated in Thomas of Damascus (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 82v-83 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian is commemorated in Thomas the Armenian (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 69-73v ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/spouse-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian is commemorated in Thomas the Armenian (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 69-73v ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian is commemorated in Thomas the Armenian (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 69-73v ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/child-of" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Constantinople and a non-Chalcedonian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sender-of-letter-to" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop of Constantinople and a non-Chalcedonian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/language-known" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/socec-status" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/sanctity" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/name-variant" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/language-known" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/language-known" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/835-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Tribunus was a devout layman and ascetic disciple whose life was recorded in John of Ephesus' Lives of the Eastern Saints ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/prop/education" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_acquaintance-of.json b/relation/person_factoids_by_relationship/factoids_acquaintance-of.json new file mode 100644 index 000000000..47f75ff9d --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_acquaintance-of.json @@ -0,0 +1,221 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aaron" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2503" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "No later than 520, Stephen brought books to Severus who was in exile in Egypt." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/824-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3718" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and the monk who stole were acquainted." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "No later than 520, Stephen brought books to Severus who was in exile in Egypt." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/824-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and the monk who stole were acquainted." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus, Leontius and Aaron were acquainted." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_addressee-of.json b/relation/person_factoids_by_relationship/factoids_addressee-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_addressee-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_alliance-with.json b/relation/person_factoids_by_relationship/factoids_alliance-with.json new file mode 100644 index 000000000..e9b527dca --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_alliance-with.json @@ -0,0 +1,1124 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Solon formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epimachus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2440" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy IV" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2441" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantine" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2444" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dorotheus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2445" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eutherius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2446" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Himerius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2447" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Helladius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul, Dorotheus, Eutherius, Himerius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Solon formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2490" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bosporius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2490" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bosporius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2491" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Helladius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2492" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-40" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2494" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Liberius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Liberius and Athanasius, bishop of Alexandria formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore, Thomas, and Epimachus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Entrechius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus, Eleusinius, Soteric, and Entrechius were united in their opposition to Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proclus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham of Amida" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3689 formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-40" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/354" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Athanasius, bishop of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Liberius and Athanasius, bishop of Alexandria formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3686" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3686 and Anonymi 3687 formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3687" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3687" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3686 and Anonymi 3687 formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3689" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3689 formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Eleusinius and Proclus formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Antoninus, Constantine, Cassian, Timothy IV and Paul had an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory Nazianzen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory Nazianzen, Bosporius and Theodore formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/512" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory of Nyssa" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory of Nyssa, Bosporius and Helladius formed an alliance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius , patriarch of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_ancestor-of.json b/relation/person_factoids_by_relationship/factoids_ancestor-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_ancestor-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_baptized.json b/relation/person_factoids_by_relationship/factoids_baptized.json new file mode 100644 index 000000000..0e0b4a90d --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_baptized.json @@ -0,0 +1,39 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3748" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3748" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 519-538 a very ill baby was baptized by a deacon in the absence of a priest. This raised questions about the legitimacy of the baptism." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptized" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_bishop-over-bishop.json b/relation/person_factoids_by_relationship/factoids_bishop-over-bishop.json new file mode 100644 index 000000000..8baa2fa01 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_bishop-over-bishop.json @@ -0,0 +1,649 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon was a bishop with authority over the bishop Epiphanius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon was a bishop with authority over the bishop Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon had ecclesiastical authority over the bishop(s) Paul and Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2492" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore had ecclesiastical authority over the bishop(s) Bosporius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter had ecclesiastical authority over the bishop(s) Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishops who attended a synod in Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Cosmas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Isidore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Solon, Paul and Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Epiphanius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent Eusebius and Victor to urge Marinus to repent and abandon his Eutychian views of the incarnation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) John of Alexandria Minor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3068-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over the bishop(s) Eucharius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3195-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had episcopal authority over Epiphanius, but he rebelled." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_bishop-over-clergy.json b/relation/person_factoids_by_relationship/factoids_bishop-over-clergy.json new file mode 100644 index 000000000..d40eb07b5 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_bishop-over-clergy.json @@ -0,0 +1,1797 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-395" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 2235" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 2235 had ecclesiastical authority over Anonymi 2218." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3066-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon had ecclesiastical authority over Maximus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3075-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian had ecclesiastical authority over Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3076-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian had ecclesiastical authority over Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian had ecclesiastical authority over Agapius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-47" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen was a bishop with authority over Anonymi 3746" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3119-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Didymus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Didymus had ecclesiastical authority over Sannus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul had ecclesiastical authority over Anonymi 3065." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3047-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2479" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Victor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Victor had ecclesiastical authority over John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3083-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter was bishop over Anonymous 3740" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3054-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios had ecclesiastical authority over Anonymous 3073." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor had ecclesiastical authority over Anonymi 3040." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor had ecclesiastical authority over Anonymi 3038." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor had ecclesiastical authority over Anonymi 3039." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen had ecclesiastical authority over Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore had ecclesiastical authority over Cosmas, Polyeuctus and Zeno." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore was bishop with authority over Silvanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Entrechius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Entrechius had ecclesiastical authority over Anonymous 3064 and Anonymi 3062." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius had ecclesiastical authority over Anonymi 3046." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius had ecclesiastical authority over Anonymi 3050." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus had ecclesiastical authority over Mark." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon had ecclesiastical authority over Anonymous 3092." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon had ecclesiastical authority over Cosmas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius had ecclesiastical authority over Isaiah." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenus had ecclesiastical authority over Romulus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2578" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac had ecclesiastical authority over Anonymi 3080." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2578" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac had ecclesiastical authority over Anonymous 3083." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius had ecclesiastical authority over Anonymi 3034." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2581" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Alexandria Minor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Alexandria Minor had ecclesiastical authority over Anonymi 3085." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733 had ecclesiastical authority over Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3742" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3742" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3742 had ecclesiastical authority over Leontius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara , metropolitan of Amid" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara, metropolitan of Amid had ecclesiastical authority over Stephen, Thomas and Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/metropolitans" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Longinus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Hesychius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Irenaeus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anatolius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Leontius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Elijah." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Cosmas, Polyeuctus and Zeno." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Theodosius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymi 3062." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Romulus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus was bishop over Eusebius and Victor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus was a bishop with authority over Mark." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3068-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymous 3090." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymous 3093." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymous 3097." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-49" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Victor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3106-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Philip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-112" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon of Beth Arsham" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon of Beth Arsham had ecclesiastical authority over Anonymous 3623." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter the Iberian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter the Iberian had ecclesiastical authority over Timothy and Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_bishop-over-monk.json b/relation/person_factoids_by_relationship/factoids_bishop-over-monk.json new file mode 100644 index 000000000..1ad59fa77 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_bishop-over-monk.json @@ -0,0 +1,268 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-474" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asclepius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asclepius had ecclesiastical authority over Anonymi 2221." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-97" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham had ecclesiastical authority over Anonymous 3673." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3637" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3637" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3637 had ecclesiastical authority over Zeʿora." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-32" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751 was a bishop with authority over Heracliana." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Mark." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymi 3077." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/845-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus had ecclesiastical authority over Caesaria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_bishop-over.json b/relation/person_factoids_by_relationship/factoids_bishop-over.json new file mode 100644 index 000000000..597869200 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_bishop-over.json @@ -0,0 +1,396 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3076-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian had ecclesiastical authority over Aurelius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3090-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore was bishop with authority over Anonymous 3783." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3083-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter was bishop over Eutychian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eucharius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eucharius had ecclesiastical authority over Firminus and Anonymi 3101." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore had ecclesiastical authority over Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore had ecclesiastical authority over Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751 was a bishop with authority over John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-96" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara , metropolitan of Amid" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara, metropolitan of Amid had ecclesiastical authority over Zota." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/metropolitans" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3030-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus was a bishop with authority over Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymi 3063." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had ecclesiastical authority over Anonymi 3079." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_bringer-of-legal-charges-against.json b/relation/person_factoids_by_relationship/factoids_bringer-of-legal-charges-against.json new file mode 100644 index 000000000..6e680b37e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_bringer-of-legal-charges-against.json @@ -0,0 +1,658 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen brought legal charges or a petition against Leontius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Hilarian brought legal charges or a petition against Eustace." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Hilarian brought legal charges or a petition against Eustace." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius brought legal charges or a petition against Callistus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius brought legal charges or a petition against Anonymi 3727." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul brought legal charges or a petition against Callistus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3055-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul brought legal charges or a petition against Hilarian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter brought legal charges or a petition against Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polyeuctus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeno" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas, Polyeuctus and Zeno brought legal charges or a petition against Anonymi 3045." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038 brought legal charges or a petition against Anonymi 3039 and Anonymi 3040." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3046" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3046 brought legal charges or a petition against Procopius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3050" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3050 brought legal charges or a petition against Procopius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3051" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3051" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3051 brought legal charges or a petition against Adelphius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3085" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3085" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3085 brought legal charges or a petition against John of Alexandria Minor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091 brought legal charges or a petition against Libanius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3101" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3101 brought legal charges or a petition against Firminus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3723" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3723" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The party of Hilarian and Musonius brought legal charges or a petition against Callistus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3727" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3727" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3727 brought legal charges or a petition against Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3734" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3734" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3734 brought legal charges or a petition against Julian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3737" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3737" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3737 brought legal charges or a petition against Nonnus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_brotherhood-with.json b/relation/person_factoids_by_relationship/factoids_brotherhood-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_brotherhood-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_carrier-of-letter-from.json b/relation/person_factoids_by_relationship/factoids_carrier-of-letter-from.json new file mode 100644 index 000000000..5a8fbeb6e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_carrier-of-letter-from.json @@ -0,0 +1,469 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2419" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius carried a letter from Severus of Antioch to Anonymous 3738" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew carried a letter from Misael to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2489" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zenobius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zenobius carried a letter from Severus of Antioch to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Rufinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Rufinus carried a letter from Celer to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Rufinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Rufinus carried a letter from Celer to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius carried a letter from Celer to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2579" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2586" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3077-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3068-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3090" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3090" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091 carried a letter from Severus of Antioch to Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3092" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092 carried a letter from Severus of Antioch to Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3789" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_carrier-of-letter-to.json b/relation/person_factoids_by_relationship/factoids_carrier-of-letter-to.json new file mode 100644 index 000000000..d15ea10db --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_carrier-of-letter-to.json @@ -0,0 +1,434 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2419" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius carried a letter between Severus of Antioch and Anonymous 3738" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew carried a letter from Misael to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2489" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zenobius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zenobius carried a letter from Severus of Antioch to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-28" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius carried a letter from Celer to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2579" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2586" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas and Basil carried a letter from Severus of Antioch to Anonymi 3084." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3077-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3068-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3090" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3090" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3090 carried a letter from Severus of Antioch to Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3091" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3091 carried a letter from Severus of Antioch to Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3092" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092 carried a letter from Severus of Antioch to Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-52" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3616" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3616" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A messenger came bearing a letter for Maria about the death of Mary." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782 carried a letter written by Severus recommeding him for ordination to Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3789" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_casual-intimate-relationship-with.json b/relation/person_factoids_by_relationship/factoids_casual-intimate-relationship-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_casual-intimate-relationship-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_child-of-sibling-of.json b/relation/person_factoids_by_relationship/factoids_child-of-sibling-of.json new file mode 100644 index 000000000..c061df50e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_child-of-sibling-of.json @@ -0,0 +1,101 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-234" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/16" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "ʿAbshmayya" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "ʿAbshmayya was the child of a sibling of Ephrem." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/831-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3204" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Daniel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Daniel was the child of the sibling of Abraham the Priest." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin was the child of the sister of Justinian" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_child-of.json b/relation/person_factoids_by_relationship/factoids_child-of.json new file mode 100644 index 000000000..da3b388f1 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_child-of.json @@ -0,0 +1,593 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-233" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/16" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "ʿAbshmayya" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "ʿAbshmayya was the child of Anonmyous 2234." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian was the child of Šnq." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abgar VIII" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abgar VIII was the child of Maʿnu." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/king" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-114" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantius II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantius II was the child of Constantine the Great." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2434" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius was the child of Mitras." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2436" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mitras" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mitras was the child of Anonymous 3102." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John was the child of Matronian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3078-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasius was the child of Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3127-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Georgia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Georgia was the child of Anastasia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3135-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2683" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John was the child of Ammian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul was the son of Vivian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3229" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin was the child of Vigilantia" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria of Amida" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria was the child of Anonymi 3610 and Euphemia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maro" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maro was the child of Anonymous 3627 and Anonymous 3628." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/831-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zwṭʾ" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zwtʾ was the child of Abraham the Priest." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3692" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3692 was the child of Isaac and Anonymous 3690." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3114-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3728" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3728 was the child of Proclus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3756" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756 were the children of Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3787" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3787 was the daughter of Georgia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_cited-negatively.json b/relation/person_factoids_by_relationship/factoids_cited-negatively.json new file mode 100644 index 000000000..3fe686cfc --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_cited-negatively.json @@ -0,0 +1,253 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Eutyches." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Irenaeus of Lyon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3159-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Theodoret." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3169-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited negatively Sabellius the Libyan." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited negatively Nestorius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited negatively Dorotheus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3176-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited negatively Hiba." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_cited-positively.json b/relation/person_factoids_by_relationship/factoids_cited-positively.json new file mode 100644 index 000000000..a053597bc --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_cited-positively.json @@ -0,0 +1,3228 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3005-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively a letter of Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively a letter by Isidore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3022-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively a letter of Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nyssa." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3027-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3027-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively a letter of Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3078-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory the Theologian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3080-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyprian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Theophilus of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Timothy of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Theophilus of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Socrates." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Dionysius of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3095-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3095-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3095-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3101-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3101-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3103-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3103-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Timothy Aelurus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3113-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3113-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3120-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3120-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3122-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3123-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nyssa." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Ignatius of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nyssa." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3131-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3131-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3131-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Athanasius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3135-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3139-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3145-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3145-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3154-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3154-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Athanasius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3159-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3159-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3160-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively the work of Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3160-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively the work of Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3161-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3162-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3163-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory of Nazianzus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3172-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3174-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3174-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3174-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3174-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Ignatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3183-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3183-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3196-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Athanasius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3197-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Timothy of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3209-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3221-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3221-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3221-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3223-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3225-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3226-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3226-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Athanasius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3235-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3235-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited positively Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_cited.json b/relation/person_factoids_by_relationship/factoids_cited.json new file mode 100644 index 000000000..eb9b7d161 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_cited.json @@ -0,0 +1,1577 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter by Dioscorus I referenced Irenaeus of Tyre and Theodosius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3114-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Dionysios referenced Dionysios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3033-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timostratus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3042-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antipater" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Antipater referenced Antipater." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2578" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3033" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3033" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Anonymous 3033 referenced Anonymous 3033." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3042" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3042" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080 refered to the writings of Anonymous 3082." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Solon and Severus of Antioch referenced Solon and Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch refered to the writings of Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch referenced Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Peter referenced Severus of Antioch and Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3033-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Timostratus referenced Severus of Antioch and Timostratus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Anonymous 3042 referenced Severus of Antioch and Anonymous 3042." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Antoninus referenced Severus of Antioch and Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3042-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Misael referenced Severus of Antioch and Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Philoxenus referenced Severus of Antioch and Philoxenus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Isaac referenced Severus of Antioch and Isaac." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch refered to the writings of Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Stephen referenced Severus of Antioch and Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch referenced Dioscorus I, Irenaeus of Tyre, and Theodosius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3120-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3122-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch referenced Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3136-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch refered to the writings of Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "A letter between Severus of Antioch and Anonymi 3750 referenced Eustochius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3152-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Basil." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3176-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus cited Pope Leo." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_clergy-for.json b/relation/person_factoids_by_relationship/factoids_clergy-for.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_clergy-for.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_clerical-relationship.json b/relation/person_factoids_by_relationship/factoids_clerical-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_clerical-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_co-located.json b/relation/person_factoids_by_relationship/factoids_co-located.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_co-located.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_colleague-of.json b/relation/person_factoids_by_relationship/factoids_colleague-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_colleague-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_command-over.json b/relation/person_factoids_by_relationship/factoids_command-over.json new file mode 100644 index 000000000..1b0871848 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_command-over.json @@ -0,0 +1,39 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hypatius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hypatius had military command over Heliodorus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/command-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_commemorates.json b/relation/person_factoids_by_relationship/factoids_commemorates.json new file mode 100644 index 000000000..87d4c10e1 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_commemorates.json @@ -0,0 +1,2678 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John commemorated Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John commemorated Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Procopius commemorated Lampetius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3750" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3750 commemorated Patrick" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3767" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3767" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3093-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus reluctantly permitted the commemoration of Epiphanius of Magydum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch commemorated Dioscorus I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John Chrysostom" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John Chrysostom commemorated women who died by suicide in the face of persecution: Pelagia, Domnina, Prosdocia, and Berenice." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/793-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Habib." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Zeʿora." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-76" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Maro." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/798-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/799-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/800-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Addai." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/801-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mare." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus convinced Harfat that he did not need to wear chains as an act of penitence. He removed them and instead committed himself to double labors, a practice he continued until his death seven years later." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mary." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Euphemia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-116" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-117" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-118" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Zota." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abbi." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated James ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Anonymous 3760." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/809-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated the poor man." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/810-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated a monk who left the monastery ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Zacharias as a holy person." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/812-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Anonymous 3762." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/814-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/814-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Addai." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/815-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/816-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/817-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Susan." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/820-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mary." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/821-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Malkha." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/822-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Elijah." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Elijah." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/824-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Anonymous 3718." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/826-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/827-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated the Monks of Amida." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/828-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mare." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/829-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Aaron." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Leontius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/831-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abraham ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/832-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/832-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Bassian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/832-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Romanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Daniel." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mari ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/834-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/834-37" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Cyriacus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/834-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/834-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Barhadbshabba." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Isaac ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/837-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/838-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemmorated Anonymi 3771" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-40" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Theodosius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Anthimus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Sergius" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Severus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Paul" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/840-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated James." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Jacob Baradaeus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Theodore of Hirtha" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "After thirteen years of wandering, Kashish came to Chios. There he visited the shrine of the martyr Isidore and venerated his grave." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Kashish." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Mary." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-28" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Theophilos." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/844-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Priscus ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/845-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Caesaria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Sosiana ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated John ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Peter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Photius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-1/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus commemorated Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_commune-together.json b/relation/person_factoids_by_relationship/factoids_commune-together.json new file mode 100644 index 000000000..f4d973a3f --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_commune-together.json @@ -0,0 +1,469 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus communed with Castor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian and Anonymi 3065 shared the Eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul and Timothy shared the Eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3091-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysius and Indacus communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Castor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus communed with Castor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proclus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3091-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2660" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Indacus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysius and Indacus communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2692" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter Mongus and Julian communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus and Anonymous 3781 communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter Mongus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter Mongus and Julian communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3065" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3065" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian and Anonymi 3065 shared the Eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3781" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3781" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus and Anonymous 3781 communed together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy II of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul and Timothy shared the Eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_conceptually-related.json b/relation/person_factoids_by_relationship/factoids_conceptually-related.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_conceptually-related.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_confessor-for.json b/relation/person_factoids_by_relationship/factoids_confessor-for.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_confessor-for.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_cousin-of.json b/relation/person_factoids_by_relationship/factoids_cousin-of.json new file mode 100644 index 000000000..a874749c1 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_cousin-of.json @@ -0,0 +1,70 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3127" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3127 and Anonymous 3128 were cousins." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cousin-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3128" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3128" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3127 and Anonymous 3128 were cousins." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cousin-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_descendent-of.json b/relation/person_factoids_by_relationship/factoids_descendent-of.json new file mode 100644 index 000000000..10164aadd --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_descendent-of.json @@ -0,0 +1,35 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas descended from Ishakuni Bar Brʿy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/descendent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_destruction.json b/relation/person_factoids_by_relationship/factoids_destruction.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_destruction.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_disciplinary-associate.json b/relation/person_factoids_by_relationship/factoids_disciplinary-associate.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_disciplinary-associate.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_employer-of.json b/relation/person_factoids_by_relationship/factoids_employer-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_employer-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_enmity-for.json b/relation/person_factoids_by_relationship/factoids_enmity-for.json new file mode 100644 index 000000000..16889f255 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_enmity-for.json @@ -0,0 +1,3187 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-52" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora had enmity for Agapetus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-159" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2211" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2211 had enmity for Anonymi 2208." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-314" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2314" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 2314 had enmity for Flavian, Domnus of Antioch, Irenaeus of Tyre, Hiba of Edessa, Eusebius of Dorylaeum, Daniel of Harran, Silwana and Theodoret of Cyrrhus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian had enmity for Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius had enmity for Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul had enmity for Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2475" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Joseph" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Joseph expressed enmity for John" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Heracliana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Heracliana had enmity for Anonymous 3751." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2494" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Liberius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Liberius had enmity for Constantius II." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaiah" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2500" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius anathematized Isaiah" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus had enmity for Anonymi 3059." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3195-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had episcopal authority over Epiphanius, but he rebelled." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3042-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2588" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aegilas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aegilas had enmity for Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John wrote a letter to Severus denouncing Timothy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034 had enmity for Epiphanius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-35" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3052" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3052" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3052 had enmity for Adelphius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3068" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3068" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3069" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3069" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3070" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3070" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had enmity for Anastasios I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3115" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3115 had enmity for Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3134" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134 had enmity for Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius had enmity for Anonymi 3686." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-49" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham of Amida" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3689 had enmity for Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John had enmity for Thomas the Armenian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3675" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3675" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3675 had enmity for Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-110" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3675" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3675" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3675 had enmity for Abraham." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-49" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3689" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3689 had enmity for Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751 had enmity for Heracliana." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril of Alexandria had enmity for Nestorius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril wrote against Theodore of Mopsuestia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Nestorius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-28" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Eutyches." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Leo." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymi 3130." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Flavian II of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus described Isidore as unphilosophic and deceitful." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Epiphanius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Bisula." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Paul." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Cosmas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus described Anonymous 3778 as a beast of burden and a pack-ass." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Elijah of Jerusalem." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymi 3054." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Paul and Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Eutyches." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymi 3071." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Martyrius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymi 3076." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus denounced Isaiah the Armenian and Anonymous 3780." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Anonymous 3781." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus refused to recognize ordinations by Theodotus and Gregory but he did accept the baptisms they performed." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus urged Theotecnus to condemn Romanus in a synodical letter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3065-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymi 3086." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymous 3093." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3075-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Julian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3075-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Dorotheus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Elijah of Jerusalem." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus found the doctrine of Origen to be faulty." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus found the doctrine of Eusebius of Caesarea to be faulty." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Flavian II of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymous 3102." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Dorotheus, Eutherius, Himerius and Helladius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus called Anatolius a false prophet." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Sergius, Diodore, Theodore, and Nestorius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3121-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Julian of Halicarnassus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Cyriac." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Flavian of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Romanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Julian of Halicarnassus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus denounced Isaiah for telling lies about him, claiming that Severus taught that the body of Christ underwent corruption while he was in the grave." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Proterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Theodotus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Sergius bar Fathya." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anonymous 3122." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Anatolius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-37" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch had enmity for Podalirius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus had enmity for Gaian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus expressed enmity for John the Grammarian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3195-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon of Beth Arsham" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon of Beth Arsham had enmity for Hiba of Edessa." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore of Pelusium" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora, Roman empress had enmity for Alexander of Alexandria and Athanasius, bishop of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_epistolary-relationship.json b/relation/person_factoids_by_relationship/factoids_epistolary-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_epistolary-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_extended-family-of.json b/relation/person_factoids_by_relationship/factoids_extended-family-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_extended-family-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_extended-household-of.json b/relation/person_factoids_by_relationship/factoids_extended-household-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_extended-household-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_family-of.json b/relation/person_factoids_by_relationship/factoids_family-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_family-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_fellow-clergy.json b/relation/person_factoids_by_relationship/factoids_fellow-clergy.json new file mode 100644 index 000000000..6f40374fb --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_fellow-clergy.json @@ -0,0 +1,797 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John the Nazarite" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John the Nazarite and Anonymous 3679 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene and Conon were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora and Anonymi 3642 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Hephaestopolis" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Qashish and John of Ephesus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas of Damascus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2401" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy and Theodore were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2404" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Libanius and Eusebius were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2405" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Libanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Libanius and Eusebius were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy and Theodore were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2679" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and John were clergy together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2710" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and John were clergy together." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene and Conon were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3253" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel and Anonymous 3665 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/840-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3258" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Jacob Baradaeus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/840-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3266" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore of Hirtha" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus and Theodore were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3642" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3642" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora and Anonymi 3642 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3665" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel and Anonymous 3665 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/795-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3679" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3679" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John the Nazarite and Anonymous 3679 were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3741" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3741, Stephen and Leontius were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/818-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, John of Hephaestopolis and Thomas of Damascus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/840-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus and Theodore were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/840-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Jacob Baradaeus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Qashish and John of Ephesus were fellow clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_fellow-monastics.json b/relation/person_factoids_by_relationship/factoids_fellow-monastics.json new file mode 100644 index 000000000..0e5dc9dd3 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_fellow-monastics.json @@ -0,0 +1,1034 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora and Anonymous 3635 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aaron" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi and John of Ephesus were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/799-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1555" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham the Recluse" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3648 and Abraham the Recluse were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1672" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Daniel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Daniel were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1876" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari and John of Ephesus were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius, Aaron and Qashish were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-50" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Qashish were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2070" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Daniel were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Suzanna" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Suzanna" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3662 and Suzanna were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias and Anonymi 3772 were monastics residing in the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Photius and Andrew were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Photius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Photius and Andrew were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Leontius were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isadora and Anonymous 3759 were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Photius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan and Samuel were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan and Samuel were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3635" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3635" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora and Anonymous 3635 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/799-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3648" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3648" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3648 and Abraham the Recluse were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3659" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3659" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3660" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3660" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Suzanna, Anonymous 3660 and Anonymous 3655 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3662" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3662 and Suzanna were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3669" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3669" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel, Jonathan and Anonymous 3669 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3693" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3693" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Photius and Anonymi 3693 were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3759" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isadora and Anonymous 3759 were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3772" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3772" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias and Anonymi 3772 were monastics residing in the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Leontius were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/806-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abi and John of Ephesus were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari and John of Ephesus were monks at the same monastery." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-50" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Qashish were fellow monastics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_follower-of.json b/relation/person_factoids_by_relationship/factoids_follower-of.json new file mode 100644 index 000000000..222b5aa36 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_follower-of.json @@ -0,0 +1,613 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/793-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora was a follower of Habib." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore Castrensus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore was a follower of Mishael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodotus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodotus was a follower of John the Rhetor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaiah" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaiah was an alledged follower of Montanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-50" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaiah" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaiah was a follower of Mani." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Lampetius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Lampetius was a follower of Adelphius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2623" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian was a follower of Romanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus rejected the incarnation and adopted the errors of Eutyches and Valentinus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3134" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3134 was a follower of Arius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/793-31" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3212" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hananya" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hananyaʾ was a follower of Habib." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/793-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bar Nbyl" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bar Nbyl was a follower of Mara Dada ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/824-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3716" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3716" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3716 were followers of Anonymous 3717." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/793-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Habib" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Habib was a follower of Bar Nbyl ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3780" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3780" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3780 was a follower of Isaiah the Armenian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was a follower of Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-70" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was a follower of Gregory Nazianzen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-40" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was a follower of Cyril of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was a follower of John Chrysostom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was a follower of Timothy II of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_freed-slave-of.json b/relation/person_factoids_by_relationship/factoids_freed-slave-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_freed-slave-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_friendship-for.json b/relation/person_factoids_by_relationship/factoids_friendship-for.json new file mode 100644 index 000000000..33bf5f88e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_friendship-for.json @@ -0,0 +1,1787 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aaron" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius and Aaron had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Harphat" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/830-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontius and Aaron had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore Castrensus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Theodore had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias and John of Ephesus had a close friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epimachus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Epimachus had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2483" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius bar Fathya" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121 and Sergius bar Fathya had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-62" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2504" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius and Eusebius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-59" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maximin" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Maximin had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maximin" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-58" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2523" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Peter had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-57" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Sergius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-56" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and John had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Isidore had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3136-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael and Severus of Antioch had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-62" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius and Eusebius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Theotecnus had a personal relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus and Thecla had a personal relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Alexander had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius and Alexander had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Martyrius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander, Musonius and Martyrius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Anastasia expressed deep affection for one another in their letters." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isadora and Anonymous 3759 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thecla" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus and Thecla had a personal relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphemia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphemia and Anonymous 3615 were friends." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3062" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3063" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3064" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Clergy and residents of Rhosus petitioned Severus to allow Anonymous 3064 to be instituted as their bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121 and Sergius bar Fathya had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3224" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Theodore had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3615" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3615" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphemia and Anonymous 3615 were friends." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3759" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isadora and Anonymous 3759 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3760" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3760" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Anonymous 3760 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/812-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3762" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Anonymous 3762 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Oecumenius, comes had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-56" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and John had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-57" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Sergius had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-58" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Peter had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-59" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Maximin had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Isidore had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Epimachus had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Theotecnus had a personal relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Anastasia expressed deep affection for one another in their letters." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3136-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael and Severus of Antioch had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Zechariah Rhetor were friends." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius , comes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Oecumenius, comes had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/comes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/58" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zechariah Rhetor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Zechariah Rhetor were friends." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus visited Harfat to learn about his asceticism and to urge him to moderate its severity, especially his use of heavy chains." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Anonymous 3760 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/811-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias and John of Ephesus had a close friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/812-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus and Anonymous 3762 had a friendship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_godparent-for.json b/relation/person_factoids_by_relationship/factoids_godparent-for.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_godparent-for.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_grandchild-of.json b/relation/person_factoids_by_relationship/factoids_grandchild-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_grandchild-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_grandparent-of.json b/relation/person_factoids_by_relationship/factoids_grandparent-of.json new file mode 100644 index 000000000..c7595f76e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_grandparent-of.json @@ -0,0 +1,39 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3102" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3102" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3102 was the grandparent of Alypius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/grandparent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_great-grandparent-of.json b/relation/person_factoids_by_relationship/factoids_great-grandparent-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_great-grandparent-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_hereditary-family-of.json b/relation/person_factoids_by_relationship/factoids_hereditary-family-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_hereditary-family-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_house-slave-of.json b/relation/person_factoids_by_relationship/factoids_house-slave-of.json new file mode 100644 index 000000000..9ef68f6ec --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_house-slave-of.json @@ -0,0 +1,35 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3633" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3633" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3629 held Anonymi 3633 as a house slave." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/house-slave-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_household-of.json b/relation/person_factoids_by_relationship/factoids_household-of.json new file mode 100644 index 000000000..4440ddd8d --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_household-of.json @@ -0,0 +1,225 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3670" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3670" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3671" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3671" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3672" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3672" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham, Anonymous 3670, Anonymous 3671 and Anonymous 3672 were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-48" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Justinian I and Theodora, Roman empress were part of the same household." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_informant-network-with.json b/relation/person_factoids_by_relationship/factoids_informant-network-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_informant-network-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_intellectual-relationship.json b/relation/person_factoids_by_relationship/factoids_intellectual-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_intellectual-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_intimate-relationship-with.json b/relation/person_factoids_by_relationship/factoids_intimate-relationship-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_intimate-relationship-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_judge-of.json b/relation/person_factoids_by_relationship/factoids_judge-of.json new file mode 100644 index 000000000..7d0e521ae --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_judge-of.json @@ -0,0 +1,268 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3119-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Didymus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Didymus heard a legal case against Sannus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3043" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The bishops assembled at a synod in Antioch heard a legal case against Anonymous 3093." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3078" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3078 heard a legal case against Antipater." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3733 deposed Paul and later Anonymi 3732 upheld the ruling." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3093-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3790" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3790" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch heard a legal case against Philip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch heard a legal case against Anonymous 3097." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3093-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Pelagius was summoned to be judged by Severus and the Count of the East. He was convicted of sowing discord and exiled from his monastery the House of Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_judicial-relationship.json b/relation/person_factoids_by_relationship/factoids_judicial-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_judicial-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_kin-of.json b/relation/person_factoids_by_relationship/factoids_kin-of.json new file mode 100644 index 000000000..627d30697 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_kin-of.json @@ -0,0 +1,128 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Harphat" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Harfat and Anonymous 3764 were kinsmen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kin-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus and Anonymous 3782 had a family relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kin-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3764" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Harfat and Anonymous 3764 were kinsmen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kin-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3782" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus and Anonymous 3782 had a family relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kin-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_legally-recognized-relationship-with.json b/relation/person_factoids_by_relationship/factoids_legally-recognized-relationship-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_legally-recognized-relationship-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_member-of-group.json b/relation/person_factoids_by_relationship/factoids_member-of-group.json new file mode 100644 index 000000000..d50c86d25 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_member-of-group.json @@ -0,0 +1,570 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantine" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2455" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore was part of Anonymi 3112." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian and Musonius were part of Anonymi 3723." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian and Musonius were part of Anonymi 3723." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2485" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander of Alexandria was part of Anonymi 3089." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter was part of Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cassian , Constantine , and Antoninus were among the bishops from Syria exiled in Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2557" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mark" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mark was part of Anonymi 3077." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3047" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3048" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3049" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Soteric, Anonymi 3047, Anonymi 3048 and Anonymi 3049 were part of Anonymi 3052." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-116" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3617" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3617" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3617 was part of Anonymi 3620." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-79" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3639" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3639" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3639 was part of Anonymi 3640." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was part of Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was part of Anonymi 3072." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch was part of the bishops who attended a synod in Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_military-relationship.json b/relation/person_factoids_by_relationship/factoids_military-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_military-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_monastic-head-over.json b/relation/person_factoids_by_relationship/factoids_monastic-head-over.json new file mode 100644 index 000000000..4af439895 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_monastic-head-over.json @@ -0,0 +1,713 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon was a monastic authority over Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John was a monastic authority over Epimachus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John was a monastic authority over Epimachus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew and Photius was a monastic authority over Anonymous 3730." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Photius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew and Photius was a monastic authority over Anonymous 3730." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Heracliana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Heracliana was a monastic authority over Anonymi 3752." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3023-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas was monastic head over Julian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3090-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2646" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius was an archimandrite with authority over Anonymous 3784." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia was a monastic authority over Anonymous 3033." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3029-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valeriana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valeriana was a monastic authority over Anonymi 3035." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-177" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba was a monastic authority over Anonymi 3677." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-79" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-85" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-106" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham III" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham was a monastic authority over Anonymous 3673." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/845-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3201" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmiana was a monastic authority over Caesaria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-59" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Job" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Job was a monastic authority over Anonymous 3669." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-204" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John (Urtaya)" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John was a monastic authority over Samuel, Jonathan and Anonymi 3677." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-52" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jonathan was a monastic authority over Anonymous 3669." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maro" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maro was a monastic authority over Samuel and Anonymous 3665." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-47" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel was a monastic authority over Jonathan and Anonymous 3669." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3667" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3667" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3667 was a monastic authority over Anonymous 3662." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3738" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3738" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3738 was a monastic authority over Nonnus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/844-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Ephesus was a monastic authority over Anonymous 3720." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_monastic-relationship.json b/relation/person_factoids_by_relationship/factoids_monastic-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_monastic-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_not-to-be-confused-with.json b/relation/person_factoids_by_relationship/factoids_not-to-be-confused-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_not-to-be-confused-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_oral-informant-about.json b/relation/person_factoids_by_relationship/factoids_oral-informant-about.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_oral-informant-about.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_oral-informant-to.json b/relation/person_factoids_by_relationship/factoids_oral-informant-to.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_oral-informant-to.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_ordained.json b/relation/person_factoids_by_relationship/factoids_ordained.json new file mode 100644 index 000000000..7185850ba --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_ordained.json @@ -0,0 +1,1940 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kenan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Mountaineer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Mountaineer ordained Anonymi 3700." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2415" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah of Jerusalem" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah of Jerusalem ordained Agapius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3055-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hilarian ordained Anonymi 3074." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2504" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius ordained Isaiah presbyter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2506" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paulinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paulinus ordained Evagrius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Flavian II of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Flavian II of Antioch ordained Anonymous 3032." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius ordained Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3065-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil ordained Anonymous 3087." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3031-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3037" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3037" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3037 ordained Anonymi 3036." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3122" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3122" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3122 ordained Sergius bar Fathya." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3133" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3133" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3133 ordained Basil of Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3135" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3135" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3135 ordained Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eugene" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-74" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3757" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3757" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3757 ordained Flavian I of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch ordained Philip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch ordained Anonymi 3100." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-57" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/513" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory the Wonderworker" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gregory the Wonderworker ordained Phaedimus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Conon as bishop of Tarsus and Eugene as bishop of Seleucia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus and other bishops in Alexandria, with the blessing of Theodosius ordained Eugene as bishop of Seleucia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Dimet as bishop of Laodicea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Seleucia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained Sergius as bishop of Harran." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Sura Romanorum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-29" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Constantinople where they ordained Sergius as bishop of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus and others ordained Paul as bishop of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In the city of Constantinople Jacob Baradaeus and others ordained Eunomius as bishop of Amida." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Smyrna." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained John as bishop of Pergamum." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While traveling in Asia Jacob Baradaeus, Eugene, and Conon ordained Peter as bishop of Tralles." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Paul as bishop of Aphrodisias." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/841-53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus, Eugene, and Conon traveled to Caria where they ordained Julian as bishop of Alabanda." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/842-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob Baradaeus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "After five years on Chios, Kashish was ordainedas bishop of Chios by Jacob Bardaeus and two other bishops (Conon and Eugene)." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-57" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius of Samosata" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius of Samosata ordained Anonymi 3132." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_parent-of.json b/relation/person_factoids_by_relationship/factoids_parent-of.json new file mode 100644 index 000000000..49aecda38 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_parent-of.json @@ -0,0 +1,329 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-39" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2482" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Podalirius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Podalirius was the parent of Anonymous 3123." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3007-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Conon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Conon was the father of Anonymous 3774" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3127-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3119" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3119" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3119 was the parent of Georgia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3120" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3120" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3120 was the parent of Sergius bar Fathya." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3624" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3624" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3624 was the parent of John of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3625" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3625" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3625 was the parent of John of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-71" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3670" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3670" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3670 was the parent of Abraham and Anonymous 3671." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/820-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3696" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3696" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3696 was the parent of Mary the Mourner." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3706" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3706 was the parent of Suzanna." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-36" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3755" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3755" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3755 was the parent of Anonymous 3754." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3758" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3758" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3758 was the parent of Father Poemen ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_patron-of.json b/relation/person_factoids_by_relationship/factoids_patron-of.json new file mode 100644 index 000000000..5ac236439 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_patron-of.json @@ -0,0 +1,140 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana acted as patron of John of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patron-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patron-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patron-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Following the self-exile of Anthimus, Theodora hid him in one of her palaces. Only she and Anonymous 3768 and Anonymous 3769 knew about this. He remained in hiding for ten years, ending with the death of Theodora." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patron-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_persecuted.json b/relation/person_factoids_by_relationship/factoids_persecuted.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_persecuted.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_possibly-identical.json b/relation/person_factoids_by_relationship/factoids_possibly-identical.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_possibly-identical.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_professional-relationship.json b/relation/person_factoids_by_relationship/factoids_professional-relationship.json new file mode 100644 index 000000000..044187eef --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_professional-relationship.json @@ -0,0 +1,5854 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-553" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Honorios and Theodosius II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Caesaria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Mountaineer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Mountaineer and Anonymi 3701 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore Castrensus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Mishael had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore Castrensus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Theodore had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore Castrensus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Justinian had a professional relationship/" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-481" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asclepius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asclepius and Euphrasios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2239" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bardin" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bar Din and Bulid had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-133" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2241" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Barsa" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Barsa and Constantius II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2243" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bulid" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bar Din and Bulid had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-133" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantius II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Barsa and Constantius II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Flavian II of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-404" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Euphemios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-438" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Macedonios II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-444" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Vitalian and Anastasios I had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-262" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2266" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arcadius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arcadius and Honorios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-262" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2267" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Honorios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Arcadius and Honorios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-553" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2267" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Honorios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Honorios and Theodosius II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-459" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-463" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-521" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I and Justin I had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-371" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeno" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontios and Zeno had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-404" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2277" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphemios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Euphemios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-481" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphrasios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asclepius and Euphrasios had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-489" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphrasios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-463" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Justinian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mishael and Justinian had a professional relationhsip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Justinian had a professional relationship/" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-489" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-521" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I and Justin I had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2285" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Qayuma bar Magartat" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-371" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2287" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Leontios and Zeno had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usurpers" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-463" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Pawla" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Justin I and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-489" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Pawla" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I, Euphrasios and Pawla had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-444" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2311" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Vitalian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Vitalian and Anastasios I had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-38" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2313" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Yahab bar Shemesh" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Yahab bar Shemesh and Qayuma bar Magartat had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3047-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2400" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Aelian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2400" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustathios and John had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2402" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustathios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustathios and John had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2406" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ignatius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marion" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul and Solon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon and Paul had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius, comes and Solon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Victor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Victor had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philip" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Philip had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2465" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul and Solon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon and Paul had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-34/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2475" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Joseph" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2476" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zacharias" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751 and Zacharias had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-34/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2477" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-54" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2487" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Julian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3083-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3034-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2528" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius and Anonymi 3129 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Claudiupolis" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Flavian II of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Flavian II of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Isidore had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Entrechius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius and Entrechius had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius and Entrechius had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antiochus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus and Anonymi 3055 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3054 and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hypatius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hypatius and Anonymous 3056 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mishael and Justinian had a professional relationhsip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Mishael had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleutherius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Eleutherius had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2560" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2561" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Symbatius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius and Timothy II of Alexandria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2566" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen the deacon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3047-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2589" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aelian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Aelian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Archelaus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2610" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana and Caesaria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Caesaria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3034-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Gennadius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2668" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "James" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and James had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-438" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Macedonius II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I and Macedonios II had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas of Tyre" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2722" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maximus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3051-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Neon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Neon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian, lacking needed clergy, sought the ordination of priests and deacons by Sergius and Marion." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103 and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2767" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2767" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2782" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Apophon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Apophon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana and Caesaria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3034" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3044" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3044" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3044 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3054" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3054" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3054 and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3055" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus and Anonymi 3055 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3056" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hypatius and Anonymous 3056 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3056" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymous 3056 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3060" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3060" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3060 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3061" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3061" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3061 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3067" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3067" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3068" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3069" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3070" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072, Anonymi 3067, Anonymous 3068, Anonymous 3069 and Anonymous 3070 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3072 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3093" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3093" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3099" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3099" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3099 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3099" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3099" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3099 and Anonymi 3100 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3100" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3100" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3099 and Anonymi 3100 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3103" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3103 and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3114" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3114" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3114 and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3129" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3129" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius and Anonymi 3129 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3131" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3131" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3224" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Justinian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/848-23" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3224" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Theodore had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/808-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3701" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3701" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon the Mountaineer and Anonymi 3701 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751 and Zacharias had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-34/" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3751, Joseph, and John had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3768" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3768" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora and Anonymous 3768 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3768" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3768" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3768 and Anonymous 3769 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3769" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3769" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora and Anonymous 3769 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3769" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3769" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3768 and Anonymous 3769 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3778" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3778" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Anonymous 3778 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenos of Mabbug" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/metropolitans" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-459" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenos of Mabbug" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/metropolitans" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba, Severus of Antioch and Maximus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-19" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Claudiupolis, Patricius and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore the Deacon asked Severus about the commands Jannia gave him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jannia, Theodore and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Menas of Tyre, Isidore, Anonymi 3034 and Archelaus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3034-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3044 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Anonymous 3778 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Apophon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Isidore had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antiochus, Severus of Antioch and Antoninus had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymous 3056 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Eleutherius had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3061 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3060 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3051-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Neon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius, comes and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3072 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3056-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-26" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen, Severus of Antioch and Simeon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch, Ignatius and Anonymous 3093 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3083-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3099 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3114 and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-54" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Julian had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and James had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Philip had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus and Victor had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sought the approval of Dioscorus in communing with Eleusinius and Proclus but not Soteric or Asterius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Asterius attempted to convince Severus to recant his condemnation of the Council of Chalcedon and Leo's Tome. He would not recant and declared his intent to suffer exile rather than recant." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patricius, Severus, Paul, and Julian of Halicarnassus agressively questioned Macedonius II about his efforts to promote the Council of Chalcedon against the wishes of Anastasius I." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-459" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justin I, Severus of Antioch and Philoxenos of Mabbug had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius , comes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius, comes and Severus of Antioch had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/comes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius , comes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius, comes and Solon had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/comes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-51" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter the Iberian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius, Peter the Iberian and Anonymi 3131 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora and Anonymous 3768 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora and Anonymous 3769 had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius , patriarch of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew, Severus of Antioch, Theodosius, patriarch of Alexandria and Theodora, Roman empress had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-45" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy II of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epiphanius and Timothy II of Alexandria had a professional relationship." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_proximate-event.json b/relation/person_factoids_by_relationship/factoids_proximate-event.json new file mode 100644 index 000000000..a4799095d --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_proximate-event.json @@ -0,0 +1,1020 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-12" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-12" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-15" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-12" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-12" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-14" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysius forced Basil to perform an unlawful ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-15" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-14" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "When Dionysius attempted to force Basil to perform an unlawful ordination, Severus urged Theotecnus and John to oppose this." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-3" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-3" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus defended Julian against charges that he attempted to mislead Anastasios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-26" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-3" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-3" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-26" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus defended Julian against charges that he attempted to mislead Anastasios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-26" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-26" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 515-18 Severus of Antioch and a group of clergy and scholastics ruled against Julian in a dispute regarding church property in Tarsus. Julian attempted to appeal to the magister militum Hypatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-17" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Those who thought the Henotikon was insufficient without an anathema of Chalcedon refused to commune with those who thought is was sufficient." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-18" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon. He was forced to repent when his prophecies did not come true." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-19" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus healed a man with boils who thought he was going to die because Anatolius prophesied the death of those who communed with non-Chalcedonians who accepted the Henotikon even though it did not anathematize Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-311" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-388" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-388" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-388" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-388" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-388" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the city of Nicopolis was destroyed by an earthquake ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-389" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the inhabitants of Nicopolis died in an earthquake." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-396" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 the Bishop of Nicopolis . and two synkelli survived an earthquake that destroyed Nicopolis ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-408" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-408" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 Anastasios deposed Euphemius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-409" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-408" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-408" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-409" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 Anastasios deposed Euphemius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-409" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-409" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 498/9 A. Gr. 810 Macedon became Bishop of Constantinople after the deposition of Euphemius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-420" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-420" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-421" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-420" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-420" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-421" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In September A. D. 503 Elul A. Gr. 814 Kavad besieged Edessa but did not capture it." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-421" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-421" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "During the seige of Edessa in September A. D. 503 Elul A. Gr. 814 Kavad burned the House of Mar Sergius and the House of the Confessors ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-482" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-476" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-482" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-482" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 424/5 A. Gr. 836 , after the flooding of Edessa Asclepius fled Edessa and spent 70 days in Antioch with Euphrasius ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-501" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-501" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-502" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-501" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-504" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-501" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-501" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-502" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 29 May 526 29 Iyār A. Gr. 837 at the seventh hour a great earthquake struck Antioch ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-502" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-502" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 15 November A. D. 527 15 Teshri II A. Gr. 839 a great fire of unknown origin burned much of what remained of Antioch after it was destroyed by earthquake ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-504" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-504" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 29 May 526 29 Iyār A. Gr. 837 Euphrasius the Patriarch of Antioch died in an earthquake." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-533" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-531" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-533" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-533" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "On 10 January A. D. 532 10 Kānun II A. Gr. 843 Demosthenes fell sick and died in Tella while fighting the Huns ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-542" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-538" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-542" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-542" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In May 540 Iyār A. Gr. 851 Chosroes broke the peace and invaded Roman territory . He laid waste Shura , Aleppo , and Antioch ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_reader-of-handwriting-of.json b/relation/person_factoids_by_relationship/factoids_reader-of-handwriting-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_reader-of-handwriting-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_reader-of.json b/relation/person_factoids_by_relationship/factoids_reader-of.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_reader-of.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_recipient-of-letter-from.json b/relation/person_factoids_by_relationship/factoids_recipient-of-letter-from.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_recipient-of-letter-from.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_refuter-of.json b/relation/person_factoids_by_relationship/factoids_refuter-of.json new file mode 100644 index 000000000..b0f331238 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_refuter-of.json @@ -0,0 +1,43 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "While in exile, Severus came into conflict with Julian of Halicarnassus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/refuter-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_related-event.json b/relation/person_factoids_by_relationship/factoids_related-event.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_related-event.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_religious-relationship.json b/relation/person_factoids_by_relationship/factoids_religious-relationship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_religious-relationship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_ritual-kinship.json b/relation/person_factoids_by_relationship/factoids_ritual-kinship.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_ritual-kinship.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_same-event.json b/relation/person_factoids_by_relationship/factoids_same-event.json new file mode 100644 index 000000000..bcfdfd396 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_same-event.json @@ -0,0 +1,624 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-6" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-6" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-2" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-6" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-11" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-11" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-11" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-11" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-11" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-11" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-11" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-11" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-10" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-10" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-1" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-9" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-10" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-1" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-1" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-1" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-6" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-2" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-2" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-2" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-18" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-18" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-545" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-18" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-261" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-261" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-554" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-261" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-476" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-476" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-555" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-476" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-18" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-545" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Two thousand people were killed in Edessa by the flooding of the Daisan river in November A. D. 201 Teshri II A. Gr. 513 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-545" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-545" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The first time the walls of Edessa were broken down was in November A. D. 201 Teshri II A. Gr. 513" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-546" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-546" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-79" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-546" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The walls of Edessa were destroyed in 302/3 A. Gr. 614 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-261" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-554" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 412/3 A. Gr. 724 the walls of Edessa were broken down by a flood for the third time." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-554" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-554" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The third time the walls of Edessa were broken down was in the days of the Kings Honorios and Theodosius and of the bishop Rabbula in March 413 Ādar A. Gr. 724 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-476" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-555" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 524/5 A. Gr. 836 a flood destroyed Edessa for the fourth time." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-555" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-555" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The fourth time the walls of Edessa were broken down was in the days of the king Justin and of the bishop Asclepius in 424/5 A. Gr. 836" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-546" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-79" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The second time the walls of Edessa were broken down . was in the days of Diocletian the King in May 303 Iyār A. Gr. 614" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-79" + }, + "person" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-79" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The walls of Edessa were destroyed in 302/3 A. Gr. 614 ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_sender-of-letter-to.json b/relation/person_factoids_by_relationship/factoids_sender-of-letter-to.json new file mode 100644 index 000000000..0582d919b --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_sender-of-letter-to.json @@ -0,0 +1,12994 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John responded to the synodical letter of Timothy and urged him to anathematize the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios wrote a letter to John complaining about his refusal simply to accept the Henotikon without anathemas of Chalcedon. His letter cites letters by Peter Mongus, Athanasius, John, and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-20" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasios I sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2402" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustathios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustathios sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marion" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-74" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2409" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter sent a letter to Constantine." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon sent a letter to Severus of Antioch asking about the conditions for entering into communion with another person." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3066-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John wrote a letter to Severus commending his wife to Severus and discussing his refusal to commune with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John wrote a letter to Severus about Ascalon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3169-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-42" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-43" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John wrote a letter to Severus about Ascalon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John wrote a letter to Severus in which they discussed receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3169-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus II" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus wrote a letter to Severus indicating that he had received into communion Castor" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3194-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dioscorus I wrote a letter to Severus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3175-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Victor" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Victor sent a letter to Severus discussing the impassibility of immortality of the body of Chist consumed in the eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3106-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philip" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philip sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3196-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philip" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philip wrote a letter to Severus discussing a monk who received ordination by due to his sin early in life tried to reject his ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-37" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2441" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore sent a letter to Epimachus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-49" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2441" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2455" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore sent a letter to Thomas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3114-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dionysios sent a letter to Fabius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicity gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius sent a letter to Longinus seeking illicit gain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3130-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2465" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus received a letter from Andrew." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Andrew sent a letter to Severus asking about whether it is lawful to venerate the remains of martyrs when they are held in the churches of heretics and informing him of the death of Zosimus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3088-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilus of Alexandria wrote a letter to Flavian of Antioch urging his to accept clergy ordained by his opponents during the Melitian Schism without the need for re-baptism or re-anointing. He cites the case of Anastasius in Rome and the case of Auxentius and Ambrose in Milan." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantine" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantine sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter sent a letter to Severus accusing him with performing invalid ordinations." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter sent a letter to Thomas accusing Severus of performing invalid ordinations." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3034-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Nicias wrote a letter to Severus informing him that Gennadius doubted that heretical clergy who have repented could be received." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3033-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timostratus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timostratus sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore sent letters to Cosmas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polyeuctus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeno" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polyeuctus, Zeno and Cosmas sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus sent a letter to Anonymous 3056." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Antoninus sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3136-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3137-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Misael sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleutherius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleutherius sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleutherius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleutherius sent a letter to Anonymi 3061." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Celer sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius wrote a letter to Severus about a trial of some presbyters." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3158-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius sent a letter to Severus discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3159-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eleusinius sent a letter to Severus discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Severus about uncanonical ordinations." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus wrote a letter to Severus seeking advice regarding the decision to receive the presbyter Mark after he repented of heresy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theotecnus wrote a letter to Severus about the theological erros of Romanus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3113-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proclus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander and Musonius sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Musonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alexander and Musonius sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John III of Nicaea" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John wrote a letter to Dioscorus and Chaeremon" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3121-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Philoxenus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abba sent a letter to Severus of Antioch on the subject of marriage and divorce." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3137-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2593" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3223-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammonius wrote a letter to Severus asking about the interpretation of Exodus 20.25." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammonius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammonius wrote a letter to Severus defending Peter Mongus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3100-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia the deaconess wrote a letter to Severus asking questions about Matthew 24.20 and other passages of the bible that address the end of the world." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia the deaconess wrote a letter to Severus asking him to clarify various difficult passages in the Bible." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3089-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Archelaus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Archelaus wrote a letter to Severus asking about John 22 and the claim made by some that the apostle John and other disciples would not experience death before the return of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3076-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aurelius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Aurelius sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3118-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria hypatissa wrote a letter to Severus asking questions about the circumcision of Jesus and what happened to his foreskin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3122-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria hypatissa wrote a letter to Severus asking questions about Matthew 14.25." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3123-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius wrote a letter to Severus asking about Enoch and Elijah being caught up into heaven and whether or not they died." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3131-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria hypatissa wrote a letter to Severus asking questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3144-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria sent a letter to Severus of Antioch on the subject of interaction with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3197-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria Hypatissa wrote a letter to Severus asking about whether or not a woman should take the eucharist following sex or during menstruation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3198-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria Hypatissa wrote a letter to Severus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3227-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria wrote a letter to Severus asking about the interpretation of John 20.22 and Matthew 12.40." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2639" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Dorotheus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elisha" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elisha wrote a letter to Severus about financial assistance for him in exile and requesting his work against John the Grammarian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3137-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2642" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epagathus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3209-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3209-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eupraxius sent a letter to Severus asking a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eunuchs" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3113-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebuna" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proclus and Eusebuna wrote a letter to Severus on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3128-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustace" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eustace wrote a letter to Severus on the subject of troubling thoughts and a legal dispute over an inheritance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3181-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac the Scholastic sent a letter to Severus about Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidora sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3015-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore sent a letter to Severus asking about trinity and Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3168-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore sent a letter to Severus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2675" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John bar Aphthonia sent a letter to Andrew." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John wrote a letter to Severus denouncing Timothy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3007-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2685" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John wrote a letter to Severus about the marriage of Conon's daughter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Marinus wrote a letter to Severus asking him to promote his kinsman as a clergyman in Apamea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas of Tyre" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Menas and Isidore wrote a letter to Severus reporting that Epiphanius excommunicated Anonymi 3034 when they would not commune with him." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3176-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius sent a letter to Severus about the exoneration of Eutyches by Dioscorus at the Second Council of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3103-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius wrote a letter to Severus asking about Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3133-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius wrote a letter to Severus asking about the risen Jesus appearing to the disciples after a night of fishing." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sergius and Marion wrote a letter to Severus on the subject of what rites to perform when receiving converts form Chalcedonianism." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simeon sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3235-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Simus wrote a letter to Severus discussing the creation of human bodies and souls." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3077-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen sent a letter to Severus requesting a historical treatment of the life of Simeon the Stylite. The letter was carried by Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thecla" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thecla sent a letter to Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3162-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Syncellus sent a letter to Severus seeking answers to a series of questions about Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3121-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Timothy" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In 511 This regularized date was calculated by the SPEAR editor from a non-calendrical dating system such as regnal years, etc. After his accession as bishop , Timothy wrote a synodical letter that he sent to John and others in which he did not anathematize the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3188-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2776" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Urban" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Urban wrote a letter to Severus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038 wrote to Severus about the readers and and singers claiming more authority than them." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3053" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "the Fathers wrote a letter to Severus about Marinus having trouble with the clergy in Beirut." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3056" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056 sent a letter to Conon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3048-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3072 sent a letter to Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3080" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3080 sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3126" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3126 sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3721" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3721 sent a letter to Severus of Antioch on the subject of marriage and divorce." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3047-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3725" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3725" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3725 sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3150-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3729" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3082-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3739" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3739" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3739 sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-17" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3750" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3750 sent a letter to Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil wrote a letter to Urbicius on the subject of refraining from communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea sent a letter to Anonymi 3116." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil of Caesarea sent a letter to Anonymi 3117." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3183-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3786" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "The presbyters of Alexandria wrote a letter to Severus criticizing him for being in communion with rigorous anti-Chalcedonians in Isauria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3787" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Georgia and her daughter wrote a letter to Severus asking about Proverbs 25.1." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cyril of Alexandria sent a letter to Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3121-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John of Tella, Philoxenus of Doliche, and Thomas of Dara wrote a letter to Severus on the subject of receiving into communion those baptized in another confession." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3001-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theognostus discussing Isaiah 61.1" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymous 3721 on the subject of marriage and divorce." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3002-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Abba on the subject of marriage and divorce." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3003-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Phocas and Eupraxius discussing the humility of Christians and the incarnation of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Constantine." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3004-88" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote letters on similar themes to Oecumenius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3005-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Antoninus in which he affirmed the real, physical birth of Jesus during which Mary felt pain." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3006-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3722 on the subject of his ordination, the legitimacy of his administration of the sacraments, and the issue of re-ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3007-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Conon about the marriage of Conon's daughter. He merely recommended that she be given in marriage to someone of orthodox faith." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3008-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Alypius on the subject of him unlawfully dismissing his wife." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3009-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3010-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theodore urging him to keep his monastic vows." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3011-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theodore cautioning him against entering the monastic life unless his wife also agreed to do the same." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3012-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Solon concerning his ordination, piety, and relationship to unorthodox bishops." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3013-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Jannia concerning her leadership as archimandritess." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3015-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Isidore discussing the the trinity and Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3016-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Peter, Ammonius, and Olympiodorus discussing Peter's ordination as bishop of Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius on the necessity of affirming correct theology but also anathematizing incorrect theology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3017-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius about his lack of agreement wiht the decision to add Peter Mongus to the dyptichs in Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3018-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dioscorus on the subject of receiving Chalcedonians who sought communion with non-Chalcedonians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3019-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eleusinius on the subject of the ordination and theology of John of Cappadocia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3020-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Archaelaus concerning the invalidity of heretics who adminsister bans." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Zacharias of Peleusium on the subject of avoiding communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3022-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysios on the subject of avoiding communion with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3023-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Cosmas on the subject of forgiving those who involuntarily commune with heretic provided they confess their sin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Solon arguing that the blessings of heaven are spiritual and not physical; eating, drinking, etc." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3024-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Basil carried a letter from Solon to Severus introducing Epiphanius and Symbatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Solon addressing a dispute involving Callistus that resulted in his deposition as deacon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3025-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Solon sent a letter to Severus addressing a dispute involving Callistus that resulted in his deposition as deacon.." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3026-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Solon disucssing episcopal authority and canon law." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3027-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Conon on the origin of human sinfulness." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3028-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Peter hoping to correct the bishop's views of ordinations that occur at the hands of those outside a particular diocese." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3029-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Valieriena thanking God for her new position as archimandritess and giving advice on how to lead the holy virgins under her care." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3030-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Simeon in which he urged him to remain as head of his monastery and not withdraw to live as an anchorite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3031-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Nicias discussing the impiety of ordination by Nestorian bishops." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Castor about dissensions between readers and sub-deacons in his church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3033-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Timostratus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3034-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Nicias on the subject of receiving heretical clergy who have repented and seek communion." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3035-30" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to archimandrite of the monastery of Bassus about a controversy surrounding a corrupt bishop of Apamea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3036-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Polyeuctus, Zeno and Cosmas." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus replied to a letter of John on the subject of not communing with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3038-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Entrechius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3039-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3053." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3040-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3042-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3043-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Antoninus carried by John the scholastic." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3044-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3045-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Between 513 and 518, Severus wrote a letter to Entrechius about the appointment of Anonymous 3064 in Rhosus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3046-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3047-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Victor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3049-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Celer." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3050-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3726 on the subject of Musonius, especially his greed, pride, and disruptive behavior." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3052-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3053-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Theotecnus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3054-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Dionysios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3055-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John III of Nicaea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3057-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Alexander and Musonius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3058-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3077." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3059-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3080." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3060-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3084." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to the Fathers on the subject of baptism and ordination." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3061-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus asked that his letter be read to Zoninus, Irenaeus, Zenobius, and Eubulus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3062-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John of Alexandria Minor." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theotecnus on the subject of receiving clergy who repented after holding heretical views." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3063-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3064-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius on the subject of the repentance of Mark and whether he should become an archimandrite." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3065-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Dionysios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3066-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Solon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3067-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Stephen promoting the ordination of the kinsman of Marinus and discussing the monk John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3068-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3066." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3069-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Eustathios." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3070-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Eusebius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3072-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3073-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3080." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3073-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3096." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3075-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Cassian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3076-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Cassian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3077-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Stephen on the subject of reading the lives of saints." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3078-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Anastasius arguing that the validity of sacraments is not based on the morality of the clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Hypatius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3081-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymous 3738." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3082-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymous 3739." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3083-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Eutychian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Conon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Anonymi 3741." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3085-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3086-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3087-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Cassian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3089-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Archelaus answering his question about John 22 and arguing that the bible does not say that the John would not experience death before the return of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3090-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theodore of Olba on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3090-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore of Olba wrote a letter to Severus on the subject of Anonymous 3783 who took communion and later said he did not know whether he had ever been baptized." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3091-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dionysius disagreeing with his decision to commune with Indacus. He urged Dionysius to bring Indacus to repentance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3092-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Philoxenos of Mabbug." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3093-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Nonnus on the disobedience of Pelagius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3094-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Eucharius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3095-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Oecumenius discussing the unity of Christ's nature without the confusion of the human and divine elements in him. He also insisted on anathematizing those who do confuse the natures." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3096-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3097-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Scholasticus discussing the blessings of God being taken from the Jews and given to the Christians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3098-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Dioscorus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3100-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Anastasia the deaconess answering her questions about Matthew 24.20 and other passages of the bible that address the end of the world." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3103-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Sergius addressing his questions Matthew 17.2 and other passages of the bible that suggest greater honor being given to some people." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3104-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Simeon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3106-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Philip." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3732 on the subject of the deposition of clergy and how those deposed by a local synod may appeal to a higher authority and be reinstated but only with agreement of the bishops who originally condemned him. Moreover, they may not exercise their priestly duties while appeal is pending." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to John and John on how to interact with heretics seeking repentance and how to decide with whom one may commune." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3109-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and John sent a letter to Severus of Antioch discussing the persecution of non-Chalcedonians in the East, and on the ordination of those who originally received ordination from heretics but wish to join the non-Chalcedonians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3110-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John and John in which he praises the recipients and discusses receiving the repentant into communion, natural disasters, and Nestorians." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 519-520 Severus of Antioch sent a letter to Anonymi 3753 about the attempts of Gregory and Isaiah to falsely claim episcopal status. He refuted their claims with references to scripture, canon law, and the lifestyles of these men." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3112-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3113-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Proclus and Eusebuna on the subject of how to readmit the lapsed cleric Cyrus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3114-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Proclus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3115-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Caesaria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3116-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Didymus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Theodore." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3117-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Thecla." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3118-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Caesaria hypatissa answering her questions about the circumcision of Jesus and what happened to his foreskin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3119-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Didymus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3120-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Caesaria hypatissa answer her question about apokatastasis and indicating that he believed the blessings of heaven and the torments of hell both to be eternal." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3120-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Caesaria hypatissa wrote a letter to Severus asking whether or not he held to the doctrine of apokatastasis." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3121-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John of Tella, Philoxenus of Doliche, and Thomas of Dara on the subject of receiving into communion those baptized in another confession." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3122-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Caesaria hypatissa answering her questions about Matthew 14.25 and referencing biblical passages dealing with the incarnation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3123-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Sergius answering his questions about Enoch and Elijah. He argued that they were still alive but had not yet experienced immortality." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Sergius and Marion on the subject of converts form Chalcedonianism doing penance but not being re-baptized or re-anointed and the subject of needing more ordained clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3124-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Sergius and Marion in which he warmly greeted Maximin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Anastasia the deaconess, answering her questions about difficult passages in the Bible. He used allegory to explain some passages." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Constantine of Laodicea answering his questions about difficult passages in the bible." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3126-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Constantine of Laodicea wrote a letter to Severus asking questions about difficult passages in the bible." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3127-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Georgia." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3128-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eustace on the subject of troubling thoughts and a legal dispute over an inheritance." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3129-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John the scholastic in which he answered questions posed by another. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3129-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John the scholastic wrote a letter to Severus in which he sought answers to questions someone else had asked him. The questions dealt with repentance for refusing to submit to monastic discipline and repentance for self-castration in one's youth." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3130-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Sergius II." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3130-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Marion." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3130-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Julian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3131-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Caesaria hypatissa answering her questions about Balaam who did not follow God but could accurately prophesy nevertheless and about the passion of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3132-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Probus discussing the seven days of creation and the judgment of Christ in the apocalypse." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3133-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter Sergius answering his question about the risen Jesus appearing to the disciples after a night of fishing. He offers an allegorical and anti-Jewish interpretation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3134-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Photius and Andrew." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3135-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammian and Epagathus on the following subjects: the name of Ammian's newborn son, Ammian's request that the eucharistic elements be sent to him, and Severus's refusal because the sacrament is not dependent upon the standing of the clergy who administers it." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3136-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3137-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "It is not clear whether Misael AND the brothers Ammian and Epagathus asked Severus for communion in a box or if it was just the brothers Ammian and Epagathus who made the request." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3137-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Caesaria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3138-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Isidora." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3139-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Thomas of Germaniciea discussing in detail a late addition in the the Gospel of Matthew indicating that the soldier who pierced the side of Christ did so before Christ had died." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Misael." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3141-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Andrew on the subject of ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Andrew concerning the holy virgins, free women, and the death of Zosimus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3143-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John Canopites on the subject of being careful about whom one communes with." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3144-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch sent a letter to Caesaria on the subject of interaction with heretics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3145-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter Sergius discussing the exegesis of Matthew 26.29 regarding Jesus not drinking wine until he is in his father's kingdom." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3148-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime after his episcopacy Severus wrote a letter to Anonymous 3750 on the subject of the persecution of non-Chalcedonians and the commemoration of faithful non-Chalcedonians no longer living." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3149-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sometime between 519-525 Severus of Antioch wrote a letter to Anonymous 3751 addressing his request to intervene in various interpersonal disputes. Severus emphasized proper order in judicial matters, especially the need for multiple witnesses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3150-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch and Anonymi 3729 exchanged letters on questions of whether or not there would be sufficient ordained clergy to adminster the Lord's Supper and baptism to the women. Severus of Antioch states that deaconnesses may administer baptism to women and male presbyters or deacons may administer the Lord's Supper." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3151-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Oecumenius on the natures of Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3152-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Simus discussing the Trinity." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3153-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Eusebius discussing the terms essence and hypostasis." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3153-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Eusebius sent a letter to Severus criticizing his use of the terms essence and hypostasis." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3154-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Maron on the subject Christology: the meaning of the terms nature, hypostasis, essence, etc." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3155-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Maron on the incarnation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3156-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Maron perfection existing only in God." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3157-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Maron on the union of natures in Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3158-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Eleusinius discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3159-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Eleusinius discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3160-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eleusinius discussing Christ's existence before the Incarnation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3161-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Entrechius discussing Christology and the Incarnation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3162-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Thomas the Syncellus on Christology and his reasons for rejecting the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3163-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Thomas discussing the union of humanity and divinity in Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3164-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Thomas discussing the union of natures in Christ." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3165-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Thomas discussing purity and fasting." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3167-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Isidore on the subject Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3168-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Isidore discussing the Trinity and opposition to heresy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3169-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to John and John discussing Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3170-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Jonathan, Samuel, and John discussing Christology and the Trinity. This letter was to be circulated among the Christians of Anbar and Hirtha dNumʿn." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3173-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to John, John, and Theodore discussing the Trinity." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3174-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to John, John, and Theodore refuting the Codicils of the Alexandrine, affirming the resurrection of a physical body, and discussing the descent of Christ into sheol." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3175-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Victor discussing the impassibility of immortality of the body of Chist consumed in the eucharist." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3176-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Sergius about the exoneration of Eutyches at the Second Council of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3178-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Neon about why Eutyches was anathematized at the Council of Chalcedon even though he was accepted at the Council of Ephesus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3179-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Elisha about the death of John, financial support for persecuted non-Chalcedonians, and his work against John the Grammarian." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3180-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to the monks of the east lamenting their expulsion from their monasteries and seeking to console them with many scripture reference." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3181-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Isaac the Scholastic about Christology and the relationship between the theology of the councils of Nicaea, Constantinople (381), and Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3182-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Charisius about the Council of Chalcedon and the failure of those in power to choose sides, seeking instead to please both sides." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3183-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to the presbyters of Alexandria defending his communion with the Christians of Isauria despite his stance of moderation with regard to the Henotikon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3185-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Musonius discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3186-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theophanes discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3187-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Theophanes about remaining true to the teaching of the Fathers of the Church." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3188-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Urban discussing the need to be moderate regarding names included in the diptychs." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3189-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Soteric discussing the need to be moderate regarding names included in the diptychs. He defends himself against those who think that some names should be removed." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Hippocrates discussing the need for moderation regarding the names listed in diptychs." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Anastasius I expressing his refusal to recant his condemnation of the Council of Chalcedon and Leo's Tome. He preferred exile to recanting." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3190-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hippocrates wrote a letter to Severus discussing communion between the churches of Antioch, Alexandria, and Caesarea." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3191-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Hippocrates the Scholastic discussing his refusal to commune with anyone who will not anathematize the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3192-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Hippocrates in which he emphasized his committment to maintaining communion between Antioch and Alexandria." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3193-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dioscorus I discussing grounds for communion, namely the anathematizing of the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3194-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dioscorus I refusing to assent to a proposal of the latter." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3195-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammantius expressing his refusal to receive Epiphanius of Tyre into communion even if he repented." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3196-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Philip discussing sin, repentance, and the monastic life." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3197-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria Hypatissa explaining a woman should not take the eucharist following sex or during menstruation." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3198-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria Hypatissa discussing liturgical traditions in different regions." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3199-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria Hypatissa discussing a hagiographic story about Nisthora predicting that an emperor would not have a son while the Council of Chalcedon remained in force." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3200-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria hypatissa in which he offered a defense of flight in the face of persecution by drawing on many biblical stories." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3202-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Zenobius discussing wisdom, virtue, and sin." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3207-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria Hypatissa discussing the fall of Adam into sin and sex." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3208-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Oecumenius arguing against the use of summaries of arguments, preferring instead a reliance on a full discourse." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3209-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus responded to a letter of Eupraxius answering a series of nine questions about the incarnation, the Trinity, the crucifixion, circumcision, and aspects of Christian ethics." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3210-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eupraxius arguing that God uses evil to correct the behavior of his people." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3211-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eupraxius arguing that God both light and darkness, against those who argue that God created light and another created darkness." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3212-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Anastasia the deaconess offering an allegorical interpretation of Psalm 127:4." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3213-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Anastasia the deaconess arguing that Revelation 20.6 does not indicate that there will be more than one resurrection." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3214-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Dorotheus offering an interpretation of Matthew 13.23." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3215-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Victor in which he discusses a passage of the book of Job and its implications for the doctrine of the trinity." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3216-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Victor discussing the gentle correction of error." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3217-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Georgia and her daughter answering their questions about Proverbs 25.1." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3218-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Philoxenus on the interpretation of 1 Corinthians 3.10." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3219-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius discussing the interpretation of Ecclestiastes 1.9-10 and 3.15 and Matthew 24.21." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3219-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ammonius wrote a letter to Severus discussing the interpretation of Ecclestiastes 1.9-10 and 3.15." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3220-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John of Bostra discussing the last days and why it has been so long since the resurrection." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3221-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to John of Bostra in which he discussed sacrifices and circumcision and argued that Christ abolished the letter of the law while the spirit of the law remains." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3222-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius discussing good, evil, the law, and free will." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3223-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Ammonius answering his question about Exodus 20.25 using allegory." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3224-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Procla arguing that there was equality of honor between men and women in the garden of Eden but was lost after the fall because sin entered through Eve." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3225-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Archelaus discussing passages of the bible that seem to suggest angels have bodies and explaining how that is not the case." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3226-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Isidore arguing that when God or angels speak they do not do so by means of physical tongues and lips." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3227-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria answering her questions about the interpretation of John 20.22 and Matthew 12.40." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3228-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria discussing the freedom of a Christian to associate with people who worship idols." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3229-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria explaining why blasphemy against the Son can be forgiven while blasphemy against the Holy Spirit cannot." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3230-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria discussing Judas and what happens when people take the eucharist in an unworthy way." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3231-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria explaining the meaning of the priest lifting the veil covering the eucharist during the liturgy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3232-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria offering an interpretation of Ecclesiastes 4.17." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3233-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Thomas of Germanicia discussing heresiarchs and the interpretation of Jude." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3234-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Eugenia on the benefits of overcoming the passions." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3235-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Simus discussing the creation of human bodies and souls." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3236-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Uranius offering an allegorical interpretation of Exodus 29.22, 26." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3237-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Zacharias interpreting Ezekiel 11.16-17." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3238-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Mitraeus interpreting Ezekiel 9.4-6 to indicate that God's judgement should come first on heretical clergy." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3239-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus sent a letter to Heracliana arguing that the trials of monks on behalf of God's people was foretold by Isaiah 18.7." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3241-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Caesaria discussing heaven, hell, and the rites of almsgiving and the eucharist performed on behalf of the dead." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3242-1" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus wrote a letter to Soteric discussing the investigation of and efforts to depose Macedonius II." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3095-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius , comes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius sent a letter to Severus discussing Christology and expressing doubts about non-Chalcedonian Christology." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/comes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3021-4" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore of Pelusium" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isidore sent a letter to Theodosius on the subject of Eusebius oppressing his congregation in order to build a lavish church building." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-106" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora, Roman empress sent a letter to Anonymous 3242." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-107" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora, Roman empress sent a letter to Stephen." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodosius , patriarch of Alexandria" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anthimus sent letters to Severus and Theodosius who sent synodical letters to him as well. They agreed to a union in opposition to the Council of Chalcedon." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_serious-intimate-relationship-with.json b/relation/person_factoids_by_relationship/factoids_serious-intimate-relationship-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_serious-intimate-relationship-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_share-a-name.json b/relation/person_factoids_by_relationship/factoids_share-a-name.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_share-a-name.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_shares-attribution-with.json b/relation/person_factoids_by_relationship/factoids_shares-attribution-with.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_shares-attribution-with.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_sibling-of-parent-of.json b/relation/person_factoids_by_relationship/factoids_sibling-of-parent-of.json new file mode 100644 index 000000000..b93d143a3 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_sibling-of-parent-of.json @@ -0,0 +1,39 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3041-15" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3056" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3056 was the sibling of the parent of Antoninus." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of-parent-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_sibling-of.json b/relation/person_factoids_by_relationship/factoids_sibling-of.json new file mode 100644 index 000000000..cde293766 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_sibling-of.json @@ -0,0 +1,1328 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/814-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Addai" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Addai and Abraham were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-232" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/13" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ephrem" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonmyous 2234 and Ephrem were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Maron were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/814-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Addai and Abraham were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Elijah were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah and Anonymi 3715 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1798" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob the Apostle" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob the Apostle and Judas were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary and Euphemia were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maron" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Maron were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "James of the Monastery of the Edessenes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "James and Anonymous 3760 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-89" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmo and Thomas were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-232" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2234" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonmyous 2234" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonmyous 2234 and Ephrem were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-70" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2246" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Commodus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Lucius Verus and Commodus were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ephrem of Amida" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Ephrem of Amida were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-70" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2288" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Lucius Verus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Lucius Verus and Commodus were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-145" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2309" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valens" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valentinian I and Valens were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/8559-145" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2310" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valentinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Valentinian I and Valens were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/chronicle-edessa" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2409" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter and Severus of Antioch were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Serenus and Julian were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-16" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2412" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Serenus" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Serenus and Julian were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia and Innocent were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3125-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2661" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Innocent" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia and Innocent were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/804-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Euphemia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary and Euphemia were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3142-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3125" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Judas" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Jacob the Apostle and Judas were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Elijah were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Anonymi 3715 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3671 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-89" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmo" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cosmo and Thomas were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Ephrem of Amida were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-77" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3253" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel and Anonymous 3667 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-81" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3606" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3606" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-81" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3607" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3607" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3654" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/847-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3655" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter, Anonymous 3654 and Anonymous 3655 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/819-77" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3667" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3667" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Samuel and Anonymous 3667 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/10510-72" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3671" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3671" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Abraham and Anonymous 3671 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Anonymi 3715 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/823-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3715" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Elijah and Anonymi 3715 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/807-25" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3760" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3760" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "James and Anonymous 3760 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3770" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Vigilantia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian and Vigilantia were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-81" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara , metropolitan of Amid" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara, metropolitan of Amid, Anonymous 3606 and Anonymi 3607 were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/metropolitans" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3099-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Peter and Severus of Antioch were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/839-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Severus of Antioch" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian and Vigilantia were siblings." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_slave-of.json b/relation/person_factoids_by_relationship/factoids_slave-of.json new file mode 100644 index 000000000..004dceb3e --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_slave-of.json @@ -0,0 +1,66 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3107-14" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3745" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3745" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3744 enslaved Anonymous 3745." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slave-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/803-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3765" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3765" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3765 were enslaved by Anonymous 3764 and Harfat." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slave-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_spouse-of.json b/relation/person_factoids_by_relationship/factoids_spouse-of.json new file mode 100644 index 000000000..8649f03ab --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_spouse-of.json @@ -0,0 +1,1034 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac and Anonymous 3690 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana and John were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos and Mary were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian and Anonymous 3233 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-105" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Khusrau I Anushirwan" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3242 and Khusrau I Anushirwan were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shahs" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Justinian I" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora, Roman empress and Justinian I were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Anonymous 3777 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2481" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anatolius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3123 and Anatolius were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3008-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2591" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius and Anonymous 3775 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3127-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anastasia" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3119 and Anastasia were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3082-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2622" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Calliopius" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3011-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2766" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Anonymous 3776 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/846-5" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sosiana and John were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/843-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theophilos and Mary were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3097" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3097" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3098 and Anonymous 3097 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3084-13" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3098" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3098" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3098 and Anonymous 3097 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3127-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3119" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3119" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3119 and Anastasia were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3120" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3120" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121 and Anonymous 3120 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3121" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3121 and Anonymous 3120 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3140-33" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3123" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3123" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3123 and Anatolius were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/813-11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Maria the Armenian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Thomas the Armenian and Anonymous 3233 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/802-105" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3242" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3242" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3242 and Khusrau I Anushirwan were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3627" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3627" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3627 and Anonymous 3628 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-41" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3628" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3628" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3627 and Anonymous 3628 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-54" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3629" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3629 and Anonymous 3632 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/796-54" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3632" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3632" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3629 and Anonymous 3632 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/836-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3690" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Isaac and Anonymous 3690 were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3082-8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3739" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3739" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3008-2" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3775" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3775" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alypius and Anonymous 3775 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3011-7" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3776" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3776" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodore and Anonymous 3776 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3037-3" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3777" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "John and Anonymous 3777 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3785" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3785" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius and Anonymous 3785 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3014-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius , comes" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oecumenius and Anonymous 3785 were married." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "occupation" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/comes" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/805-44" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora , Roman empress" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Theodora, Roman empress and Justinian I were spouses." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "occupation" : { + "type" : "uri", + "value" : "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_student-of.json b/relation/person_factoids_by_relationship/factoids_student-of.json new file mode 100644 index 000000000..c51b76b60 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_student-of.json @@ -0,0 +1,209 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-80" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Zeʿora studied under Anonymous 3634." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/828-10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara the Solitary" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mara the Solitary studied under Paul the Mourner." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/833-6" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1876" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Mari studied under Mara of Beth Urtaye." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3116-27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2020" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polycarp of Smyrna" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Polycarp was a disciple of John the Evangelist" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/794-75" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3212" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hananya" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hananya studied under Zeʿora." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/797-22" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3698" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3698 studied under Sergius." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/lives-eastern-saints" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3111-65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3756" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3756 studied under Isaiah." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_submitter-of-legal-petition-to.json b/relation/person_factoids_by_relationship/factoids_submitter-of-legal-petition-to.json new file mode 100644 index 000000000..bc82b474f --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_submitter-of-legal-petition-to.json @@ -0,0 +1,128 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3079-24" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Julian made a legal petition to Heliodorus" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3108-34" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Paul petitioned Cyril of Alexandria" + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3032-12" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymi 3038 made a petition to or sought a legal ruling from Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + }, { + "factoid" : { + "type" : "uri", + "value" : "https://spear-prosop.org/3071-9" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3092" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3092 made a petition to or sought a legal ruling from Severus of Antioch." + }, + "relationship" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "gender" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "source" : { + "type" : "uri", + "value" : "https://spear-prosop.org/letters-severus" + } + } ] + } +} \ No newline at end of file diff --git a/relation/person_factoids_by_relationship/factoids_written-informant-about.json b/relation/person_factoids_by_relationship/factoids_written-informant-about.json new file mode 100644 index 000000000..04ba13345 --- /dev/null +++ b/relation/person_factoids_by_relationship/factoids_written-informant-about.json @@ -0,0 +1,8 @@ +{ + "head" : { + "vars" : [ "factoid", "person", "label_en", "description", "relationship", "gender", "occupation", "source" ] + }, + "results" : { + "bindings" : [ ] + } +} \ No newline at end of file diff --git a/relation/relationship_types.json b/relation/relationship_types.json new file mode 100644 index 000000000..a9cd3024f --- /dev/null +++ b/relation/relationship_types.json @@ -0,0 +1,918 @@ +{ + "head" : { + "vars" : [ "subject", "label" ] + }, + "results" : { + "bindings" : [ { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/disciplinary-associate" + }, + "label" : { + "xml:lang" : "de", + "type" : "literal", + "value" : "Fachkollege" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/acquaintance-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Acquaintance of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/addressee-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Addressee of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/alliance-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Alliance with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ancestor-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ancestor of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptized" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Baptized" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop over" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-monk" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop over Monk" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-bishop" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop over Bishop" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over-clergy" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bishop over Clergy" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bringer of Legal Charges against" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/brotherhood-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Brotherhood with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-from" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Carrier of Letter from" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/carrier-of-letter-to" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Carrier of Letter to" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/casual-intimate-relationship-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Casual Intimate Relationship with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Child of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-of-sibling-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Child of Sibling of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cited" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-negatively" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cited Negatively" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cited-positively" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cited Positively" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy-for" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Clergy for" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clerical-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Clerical Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/co-located" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Co-located" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/colleague-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Colleague of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/command-over" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Command over" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemorates" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Commemorates" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commune-together" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Commune Together" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conceptually-related" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Conceptually Related" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confessor-for" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Confessor for" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cousin-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Cousin of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/descendent-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Descendent of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/destruction" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Destruction" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/disciplinary-associate" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Disciplinary Associate" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/employer-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Employer of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/enmity-for" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Enmity for" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/epistolary-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Epistolary Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/extended-family-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Extended Family of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/extended-household-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Extended Household of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/family-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Family of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-clergy" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Fellow Clergy" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellow-monastics" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Fellow Monastics" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/follower-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Follower of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/freed-slave-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Freed Slave of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Friendship for" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/godparent-for" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Godparent for" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/grandchild-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Grandchild of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/grandparent-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Grandparent of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/great-grandparent-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Great-grandparent of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hereditary-family-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Hereditary Family of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/house-slave-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "House Slave of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/household-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Household of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/informant-network-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Informant Network with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/intellectual-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Intellectual Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/intimate-relationship-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Intimate Relationship with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judge-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Judge of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/judicial-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Judicial Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kin-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Kin of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/legally-recognized-relationship-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Legally Recognized Relationship with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/military-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Military Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-head-over" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Monastic Head over" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Monastic Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/not-to-be-confused-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Not to be Confused with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oral-informant-about" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oral Informant about" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oral-informant-to" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Oral Informant to" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordained" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ordained" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/parent-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Parent of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patron-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Patron of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecuted" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Persecuted" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/possibly-identical" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Possibly Identical" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/professional-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Professional Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/proximate-event" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Proximate Event" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/reader-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Reader of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/reader-of-handwriting-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Reader of Handwriting of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/recipient-of-letter-from" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Recipient of Letter from" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/refuter-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Refuter of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/related-event" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Related Event" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-relationship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Religious Relationship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ritual-kinship" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Ritual Kinship" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/same-event" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Same Event" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sender-of-letter-to" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sender of Letter to" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/serious-intimate-relationship-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Serious Intimate Relationship with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/share-a-name" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Share a Name" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shares-attribution-with" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Shares Attribution with" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sibling of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sibling-of-parent-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Sibling of Parent of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slave-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Slave of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouse-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Spouse of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/student-of" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Student of" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/submitter-of-legal-petition-to" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Submitter of Legal Petition to" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/written-informant-about" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Written Informant about" + } + }, { + "subject" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/member-of-group" + }, + "label" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "member-of-group" + } + } ] + } +} \ No newline at end of file diff --git a/relation/search.js b/relation/search.js new file mode 100644 index 000000000..2635a8d5f --- /dev/null +++ b/relation/search.js @@ -0,0 +1,225 @@ +export const SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; + + + +// Relation Factoids +function buildRelationFactoidQuery(state) { + + const selectVars = new Set(['?factoid', '?description','?source','?relationship']); + const blocks = []; + console.log("state: ", state); + // Person filter: filtering currently in json for partial string matches + // if (state.persons.length > 0) { + // blocks.push(` + // ?statementNode sps:event-participant ?person . + // ?statementNode spr:reference-URL ?factoid . + // VALUES ?person { ${Array.from(state.persons).map(uri => `<${uri}>`).join(' ')} } + // `); + // selectVars.add('?person'); + // } + // Event Uri filter: Handles the person filters for gender, name, and occupation + if (state.relations.length > 0) { + console.log("Adding relations URIs to SPARQL query:", state.relations); + blocks.push(` + ?statementNode spr:reference-URL ?factoid . + VALUES ?factoid { ${Array.from(state.relations).map(uri => `<${uri}>`).join(' ')} } + `); + } + + // Source filter + if (state.selectedSourceKeywords.size > 0) { + blocks.push(` + ?factoid spr:part-of-series ?source . + VALUES ?source { ${Array.from(state.selectedSourceKeywords).map(uri => `<${uri}>`).join(' ')} } + `); + selectVars.add('?source'); + } else { + blocks.push(` + ?factoid spr:part-of-series ?source . + VALUES ?source { + + + + }`) + } + // Gender filter + // if (state.selectedGenderKeywords.size > 0) { + // blocks.push(` + // ?person swdt:gender ?gender . + // ?person sp:gender ?statementNode . + // VALUES ?gender { ${Array.from(state.selectedGenderKeywords).map(uri => `<${uri}>`).join(' ')} } + // `); + // selectVars.add('?gender'); + // } + // Relationship filter//works for person + if (state.selectedRelationshipKeywords.size > 0) { + blocks.push(` + ?person ?relationship ?statementNode . + ?statementNode spr:reference-URL ?factoid . + VALUES ?relationship { ${Array.from(state.selectedRelationshipKeywords).map(uri => `<${uri.replace('/taxonomy/', '/prop/')}>`).join(' ')} } + `); + } + // Uncertainty filter + let uncertaintyBlock = ''; // Declare in outer scope + + if (state.uncertainty && state.uncertainty.trim() !== '') { + const levels = state.uncertainty + .split(',') + .map(level => level.trim().toLowerCase()) + .filter(Boolean); // remove empty strings + + if (levels.length > 0) { + const filters = levels.map(lvl => `"${lvl}"`).join(', '); + uncertaintyBlock = ` + FILTER NOT EXISTS { + ?factoid spq:certainty ?level . + FILTER(LCASE(STR(?level)) IN (${filters})) + }`; + } + } + + // We can bind the labels to the person in places in the query where we already have ?person bound + const needsPersonLabel = blocks.some(b => + b.includes('?person') && + !b.includes('swdt:birth-place') && + !b.includes('swdt:death-place') && + !b.includes('swdt:residence') && + !b.includes('swdt:event-place') + ); + if (needsPersonLabel) { + blocks.push(` + OPTIONAL { + GRAPH { + ?person rdfs:label ?label . + FILTER(LANG(?label) = "en") + } + } + `); + selectVars.add('?label'); + selectVars.add('?person'); + } + + + // Final SPARQL query + return ` +PREFIX sp: +PREFIX spr: +PREFIX schema: +PREFIX swdt: + +PREFIX sps: +PREFIX spq: + +SELECT DISTINCT ${Array.from(selectVars).join(' ')} +FROM +FROM NAMED +WHERE { + ${blocks.join('\n')} + ${uncertaintyBlock} + + ?statementNode spr:reference-URL ?factoid . + + OPTIONAL { ?factoid schema:description ?description . } + +} +ORDER BY ?factoid +LIMIT 20000 +`; +} + +export async function fetchRelationFactoids(state) { + const query = buildRelationFactoidQuery(state); + console.log("Buiding query with state:", state); + console.log('Fetching factoids with query:', query); + try { + const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { + headers: { Accept: 'application/sparql-results+json' } + }); + + if (!res.ok) { + const errorText = await res.text(); + console.error("SPARQL HTTP error:", res.status, errorText); + return []; + } + + const data = await res.json(); + return data.results.bindings.map(b => ({ + uri: b.factoid?.value ?? '', + description: b.description?.value ?? '', + label: b.label?.value ?? '', + person: b.person?.value ?? '', + relationship: b.relationship?.value ?? '', + gender: b.gender?.value ?? '', + field: b.field?.value ?? '', + source: b.source?.value ?? '', + uncertainty: b.level?.value ?? '', + type: b.type?.value ?? '', + stmt: b.stmt?.value ?? '' + })); + } catch (err) { + console.error("Failed to fetch factoids:", err); + return []; + } +} + +export async function fetchData(state) { + const query = buildMultiFilterQuery(state); + console.log("Build MultiFilterQuery with state:", 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.selectedRelationshipKeywords.size === 0 && +// state.selectedOccupationKeywords.size === 0 && +// state.selectedGenderKeywords.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); + + try { + const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { + headers: { Accept: 'application/sparql-results+json' } + }); + + if (!res.ok) { + const errorText = await res.text(); + console.error("SPARQL HTTP error:", res.status, errorText); + return []; + } + + const data = await res.json(); + return data.results.bindings.map(b => ({ + uri: b.factoid?.value ?? '', + description: b.description?.value ?? '', + label: b.label?.value ?? '', + person: b.person?.value ?? '', + relationship: b.relationship?.value ?? '', + occupation: b.occupation?.value ?? '', + gender: b.gender?.value ?? '', + source: b.source?.value ?? '', + type: b.type?.value ?? '', + stmt: b.stmt?.value ?? '', + label_en: b.label_en?.value ?? '', + label_syr: b.label_syr?.value ?? '', + })); + } catch (err) { + clearTimeout(timeoutId); + if (err.name === 'AbortError') { + console.error("Query timed out after 5 seconds"); + } else { + console.error("Failed to fetch factoids:", err); + } + return []; + } +} diff --git a/utils/cleanUi.js b/utils/cleanUi.js index 0867d431e..c325d7d56 100644 --- a/utils/cleanUi.js +++ b/utils/cleanUi.js @@ -9,3 +9,50 @@ export function cleanPunctuationSpacing(text) { // Collapse multiple spaces .replace(/\s{2,}/g, ' '); } + +export function uriDisplayString(uri){ + if (uri == null) return ''; + if (uri.startsWith("http://syriaca.org/prop/") || uri.startsWith("http://syriaca.org/taxonomy/")) { + return uri.split('/').pop().replace(/([A-Z])/g, ' $1').trim(); + } + return ('' + uri); +}; + +/** + * Deduplicates factoid results by factoid URI + * Keeps the first occurrence of each unique factoid + * @param {Array} factoids - Array of factoid objects + * @returns {Array} - Deduplicated array of factoids + */ +export function deduplicateFactoids(factoids) { + if (!factoids || factoids.length === 0) return factoids; + + const seen = new Map(); + const duplicates = []; + + factoids.forEach(factoid => { + const uri = factoid.uri || factoid.factoid; + + if (!uri) { + console.warn('Factoid without URI found:', factoid); + return; + } + + if (!seen.has(uri)) { + seen.set(uri, factoid); + } else { + duplicates.push(uri); + } + }); + + if (duplicates.length > 0) { + console.log(`Removed ${duplicates.length} duplicate factoids`); + } + + const deduplicated = Array.from(seen.values()); + console.log(`Deduplication: ${factoids.length} → ${deduplicated.length} factoids`); + + return deduplicated; +} + + From c1c197e8204acbce4c407cdaf57869c830213e6a Mon Sep 17 00:00:00 2001 From: emgeier Date: Fri, 13 Mar 2026 14:27:27 -0500 Subject: [PATCH 2/5] relation no results message match other tabs --- modes/relation.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modes/relation.js b/modes/relation.js index 7764c9a61..33be3d7a1 100644 --- a/modes/relation.js +++ b/modes/relation.js @@ -600,7 +600,11 @@ if (hasName || hasGender || hasOccupation || hasSource) { // Render into the event results panel const panel = document.getElementById('relation--items'); if (!panel) return; - + + if (!facts || facts.length === 0) { + panel.innerHTML = `
      No event factoids match these filters.
      `; + return; + } From 78739397dc444333f033befdc922df16a7a7d352 Mon Sep 17 00:00:00 2001 From: emgeier Date: Fri, 13 Mar 2026 14:35:17 -0500 Subject: [PATCH 3/5] typo in error message --- modes/relation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modes/relation.js b/modes/relation.js index 33be3d7a1..0f7a296db 100644 --- a/modes/relation.js +++ b/modes/relation.js @@ -600,9 +600,9 @@ if (hasName || hasGender || hasOccupation || hasSource) { // Render into the event results panel const panel = document.getElementById('relation--items'); if (!panel) return; - + if (!facts || facts.length === 0) { - panel.innerHTML = `
      No event factoids match these filters.
      `; + panel.innerHTML = `
      No relation factoids match these filters.
      `; return; } From 4b0d5fdfb64e441e5875780dcc89b91a9a882892 Mon Sep 17 00:00:00 2001 From: emgeier Date: Tue, 17 Mar 2026 10:47:25 -0500 Subject: [PATCH 4/5] removed broken link --- contact.html | 2 +- modes/event.js | 2 ++ relation/all_person_relation_factoids.json | 30 +++++++++++----------- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/contact.html b/contact.html index 5bc058ee7..d2e6505ac 100644 --- a/contact.html +++ b/contact.html @@ -66,7 +66,7 @@

      Comments and Collaboration

      Support Our Work

      We are also grateful to all financial supporters of our work. Financial - contributions can be made through Vanderbilt University at www.vu.edu/syriac or by contacting + contributions can be made by contacting info@syriaca.org.

      diff --git a/modes/event.js b/modes/event.js index debd45b47..7109a7a77 100644 --- a/modes/event.js +++ b/modes/event.js @@ -514,6 +514,8 @@ export default { s.uncertainty = ''; // reset inputs visually + const nameInput = root.querySelector('#name-search'); + if (nameInput) nameInput.value = ''; root.querySelectorAll('input[name="gender"]').forEach(cb => (cb.checked = false)); root.querySelectorAll('input[name="uncertainty"]').forEach(cb => (cb.checked = false)); const all = root.querySelector('#eventSourceSelect input[data-all]'); diff --git a/relation/all_person_relation_factoids.json b/relation/all_person_relation_factoids.json index 3bddc9ddf..bc2d47cde 100644 --- a/relation/all_person_relation_factoids.json +++ b/relation/all_person_relation_factoids.json @@ -10698,7 +10698,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + "value": "http://syriaca.org/taxonomy/dukes" }, "source": { "type": "uri", @@ -18682,7 +18682,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -23303,7 +23303,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -27463,7 +27463,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -27707,7 +27707,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + "value": "http://syriaca.org/taxonomy/prefects" }, "source": { "type": "uri", @@ -27779,7 +27779,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/prefect" + "value": "http://syriaca.org/taxonomy/prefects" }, "source": { "type": "uri", @@ -33355,7 +33355,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -33391,7 +33391,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -33427,7 +33427,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -36593,7 +36593,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/dux" + "value": "http://syriaca.org/taxonomy/dukes" }, "source": { "type": "uri", @@ -38069,7 +38069,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + "value": "http://syriaca.org/taxonomy/cubicularius" }, "source": { "type": "uri", @@ -38105,7 +38105,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/cubicularius" + "value": "http://syriaca.org/taxonomy/cubicularius" }, "source": { "type": "uri", @@ -48529,7 +48529,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -48565,7 +48565,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", @@ -51117,7 +51117,7 @@ }, "occupation": { "type": "uri", - "value": "file:///Users/geiere/Projects/Neptune/upload/srophe-data-rdf/persons/empress" + "value": "http://syriaca.org/taxonomy/empresses" }, "source": { "type": "uri", From a6a3d7414294f5788072d0a51a2e91f2ffceef2f Mon Sep 17 00:00:00 2001 From: emgeier Date: Tue, 17 Mar 2026 11:06:34 -0500 Subject: [PATCH 5/5] aggregate page link added to person results --- modes/person.js | 4 ++-- utils/cleanUi.js | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/modes/person.js b/modes/person.js index 339cb46cf..0798dbf3b 100644 --- a/modes/person.js +++ b/modes/person.js @@ -9,7 +9,7 @@ import { import { renderKeywordPrettyList } from '../list.js'; import persons from "../person/person.json" with { type: 'json' }; -import { cleanPunctuationSpacing } from '../utils/cleanUi.js'; +import { cleanPunctuationSpacing, toAggregateUri } from '../utils/cleanUi.js'; import { fetchData } from '../person/search.js'; function writeFilterParamsToUrl(filterState) { @@ -580,7 +580,7 @@ if (nameInput) {
        ${facts.map(f => `
      • - ${f.label_en ? ` ${f.label_en} -- ` : ''}${f.label_syr ? ` ${f.label_syr}` : ''} + ${f.label_en ? ` ${f.label_en} -- ` : ''}${f.label_syr ? ` ${f.label_syr}` : ''}
        ${f.person ? ` [${f.person}]
        ` : ''} diff --git a/utils/cleanUi.js b/utils/cleanUi.js index c325d7d56..a2947243c 100644 --- a/utils/cleanUi.js +++ b/utils/cleanUi.js @@ -10,6 +10,11 @@ export function cleanPunctuationSpacing(text) { .replace(/\s{2,}/g, ' '); } +export function toAggregateUri(uri) { + const result = uri.replace('syriaca.org', 'spear-prosop.org').replace(/(\/)(person|place|keyword|work)(\/)/, '$1aggregate/$2$3'); + return result.endsWith('.html') ? result : result + '.html'; +} + export function uriDisplayString(uri){ if (uri == null) return ''; if (uri.startsWith("http://syriaca.org/prop/") || uri.startsWith("http://syriaca.org/taxonomy/")) {