From 2914b51af4145991c97730155de913ac20a39fa8 Mon Sep 17 00:00:00 2001 From: emgeier Date: Fri, 5 Dec 2025 16:12:31 -0600 Subject: [PATCH] data adjustment added persons from Dans list clear error messaging for source query --- .github/workflows/all_code_to_s3.yml | 2 +- .gitignore | 4 +- dev-neptune-queries/all-factoids.html | 83 - dev-neptune-queries/factoidsqueries.js | 357 - dev-neptune-queries/menuqueries.js | 285 - dev-neptune-queries/og-styling-browse.html | 121 - dev-neptune-queries/personqueries.js | 216 - dev-neptune-queries/prettylist.js | 72 - dev-neptune-queries/search.js | 226 - dev-neptune-queries/spear_persons.json | 15623 ------------------- dev-neptune-queries/test-browse.html | 136 - mode.js | 8 +- person/person.json | 183 +- 13 files changed, 56 insertions(+), 17260 deletions(-) delete mode 100644 dev-neptune-queries/all-factoids.html delete mode 100644 dev-neptune-queries/factoidsqueries.js delete mode 100644 dev-neptune-queries/menuqueries.js delete mode 100644 dev-neptune-queries/og-styling-browse.html delete mode 100644 dev-neptune-queries/personqueries.js delete mode 100644 dev-neptune-queries/prettylist.js delete mode 100644 dev-neptune-queries/search.js delete mode 100644 dev-neptune-queries/spear_persons.json delete mode 100644 dev-neptune-queries/test-browse.html diff --git a/.github/workflows/all_code_to_s3.yml b/.github/workflows/all_code_to_s3.yml index 1a97e7ec6..ba69fa1ad 100644 --- a/.github/workflows/all_code_to_s3.yml +++ b/.github/workflows/all_code_to_s3.yml @@ -36,7 +36,7 @@ jobs: - name: Sync files in S3 if: success() run: | - aws s3 sync ./ s3://$BUCKET_NAME --exact-timestamps --exclude "data/*" --exclude ".github/*" --exclude "aggregate/*" --exclude ".git/*" --exclude "dev-neptune-queries/*" + aws s3 sync ./ s3://$BUCKET_NAME --exact-timestamps --exclude "data/*" --exclude ".github/*" --exclude "aggregate/*" --exclude ".git/*" --exclude "sparql-query/*" env: AWS_REGION: ${{ secrets.AWS_REGION }} AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} diff --git a/.gitignore b/.gitignore index 1a8a61c5b..f8e204627 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,6 @@ PersonURIs_SPEAR.txt PersonURIs_SPEAR_sorted.txt missing_from_person_json.txt person_values.txt -person_values_sorted.txt \ No newline at end of file +person_values_sorted.txt +sparql-query +sparql-query/* \ No newline at end of file diff --git a/dev-neptune-queries/all-factoids.html b/dev-neptune-queries/all-factoids.html deleted file mode 100644 index efb874dcb..000000000 --- a/dev-neptune-queries/all-factoids.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - All Factoids - - - -

All Factoids

-
Loading...
- - - - diff --git a/dev-neptune-queries/factoidsqueries.js b/dev-neptune-queries/factoidsqueries.js deleted file mode 100644 index d79910f57..000000000 --- a/dev-neptune-queries/factoidsqueries.js +++ /dev/null @@ -1,357 +0,0 @@ -export const SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; - -export const getAllFactoids = () => ` -PREFIX rdfs: -PREFIX spr: -PREFIX schema: - -SELECT DISTINCT ?factoid ?description -FROM -WHERE { - - ?statementNode spr:reference-URL ?factoid . - OPTIONAL { - ?factoid schema:description ?description . - } -} -ORDER BY ?factoid -`; -// uncertainty level filter example - // PREFIX spq: - - // SELECT (COUNT(DISTINCT ?factoid) AS ?count) - // FROM - // WHERE { - // ?factoid spq:certainty ?level . - // FILTER(LCASE(STR(?level)) NOT IN ("dubia", "incerta")) - // } -export const getAllFactoidsUncertaintyFilter = (levelsStringWithQuotes) => ` - PREFIX spq: - PREFIX rdfs: - PREFIX spr: - PREFIX schema: - - SELECT DISTINCT ?factoid ?description - FROM - WHERE { - - ?statementNode spr:reference-URL ?factoid . - FILTER NOT EXISTS { - ?factoid spq:certainty ?level . - FILTER(LCASE(STR(?level)) = levelsStringWithQuotes) - } - OPTIONAL { - ?factoid schema:description ?description . - } - } - ORDER BY ?factoid - `; -//Quotes are around each uncertainty term -export const getAllFactoidsUncertaintyFilterCount = (levelsStringWithQuotes) => ` -curl -G "https://sparql.vanderbilt.edu/sparql" \ - --data-urlencode 'query= - PREFIX spq: - PREFIX spr: - - SELECT (COUNT(DISTINCT ?factoid) AS ?count) - FROM - WHERE { - ?statementNode spr:reference-URL ?factoid . - - FILTER NOT EXISTS { - ?factoid spq:certainty ?level . - FILTER(LCASE(STR(?level)) = levelsStringWithQuotes) - } - } - ' \ - -H "Accept: application/sparql-results+json" - - `; - -// export const getAllPersonFactoids = () => ` -// PREFIX rdfs: -// PREFIX spr: -// PREFIX schema: - -// SELECT DISTINCT ?factoid ?description -// FROM -// FROM NAMED -// WHERE { -// ?person rdfs:label ?label . - -// GRAPH { -// { -// ?person ?pred ?statementNode . -// ?statementNode spr:reference-URL ?factoid . -// } -// UNION -// { -// ?statementNode ?pred ?person . -// ?statementNode spr:reference-URL ?factoid . -// } - -// FILTER(?factoid != ?person) - -// OPTIONAL { -// ?factoid schema:description ?description . -// } -// } -// } -// ORDER BY ?factoid -// `; - -export const getAllPersonFactoids = () => ` -PREFIX rdfs: -PREFIX spr: -PREFIX schema: - -SELECT DISTINCT ?factoid ?description ?type ?label ?person -FROM -FROM NAMED -WHERE { - ?person rdfs:label ?label . - FILTER(LANG(?label) = "en") - GRAPH { - { - ?person ?type ?statementNode . - ?statementNode spr:reference-URL ?factoid . - } - UNION - { - ?statementNode ?type ?person . - ?statementNode spr:reference-URL ?factoid . - } - - FILTER(?factoid != ?person) - - OPTIONAL { - ?factoid schema:description ?description . - } - } -} -ORDER BY ?factoid -`; - -export const getFactoidsForRelationship = (relationshipUri) => ` - PREFIX swdt: - PREFIX schema: - PREFIX sp: - PREFIX sps: - PREFIX spr: - - SELECT DISTINCT ?factoid ?description ?person - FROM - WHERE { - { - ?person <${relationshipUri}> ?statementNode . - ?statementNode spr:reference-URL ?factoid . - } - OPTIONAL { ?factoid schema:description ?description } - } - ORDER BY ?factoid -`; -export const getFactoidsForRelationshipWithLabels = (relationshipUri) => ` - PREFIX swdt: - PREFIX schema: - PREFIX sp: - PREFIX sps: - PREFIX spr: - PREFIX rdfs: - - SELECT DISTINCT ?factoid ?description ?person ?label - FROM - FROM NAMED - WHERE { - { - ?person <${relationshipUri}> ?statementNode . - ?statementNode spr:reference-URL ?factoid . - - } - OPTIONAL { ?factoid schema:description ?description } - GRAPH { - ?person rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - } - ORDER BY ?label -`; - -export const getFactoidsForEthnicity = (ethnicityUri) => ` - PREFIX swdt: - PREFIX schema: - PREFIX sp: - PREFIX sps: - PREFIX spr: - - SELECT DISTINCT ?factoid ?description - FROM - WHERE { - ?person swdt:ethnic-label <${ethnicityUri}> . - ?person sp:ethnic-label ?statementNode . - ?statementNode spr:reference-URL ?factoid . - ?factoid schema:description ?description . - } -`; - -export const getFactoidsForPlace = (placeUri) => ` - PREFIX swdt: - PREFIX spr: - PREFIX schema: - PREFIX sp: - PREFIX sps: - - SELECT DISTINCT ?factoid ?description - FROM - WHERE { - { - ?person swdt:birth-place <${placeUri}> ; - sp:birth-place ?statementNode . - } UNION { - ?person swdt:death-place <${placeUri}> ; - sp:death-place ?statementNode . - } UNION { - ?person swdt:residence <${placeUri}> ; - sp:residence ?statementNode . - } UNION { - ?event swdt:event-place <${placeUri}> ; - sp:event-place ?statementNode . - } - ?statementNode spr:reference-URL ?factoid . - ?factoid schema:description ?description . - } -`; - -export const getFactoidsForFieldOfStudy = (fieldUri) => ` - PREFIX swdt: - PREFIX spr: - PREFIX schema: - PREFIX sp: - PREFIX sps: - - SELECT DISTINCT ?factoid ?description - FROM - WHERE { - ?statementNode sps:education <${fieldUri}> ; - spr:reference-URL ?factoid . - ?factoid schema:description ?description . - } -`; -export const getFactoidsRelatedToKeyword = (eventKeywordUri) => ` -PREFIX spr: -PREFIX schema: -PREFIX sps: - - SELECT DISTINCT ?factoid ?description - FROM - WHERE { - ?statementNode sps:event-keyword <${eventKeywordUri}> ; - spr:reference-URL ?factoid . - OPTIONAL { ?factoid schema:description ?description . } - } -`; - -export async function fetchFactoidsByType(uri, type) { - let query; - console.log("Type: ", type); - switch (type) { - case "event": - query = getFactoidsRelatedToKeyword(uri); - break; - case "ethnicity": - query = getFactoidsForEthnicity(uri); - break; - case "place": - query = getFactoidsForPlace(uri); - break; - case "fieldOfStudy": - console.log("Field of Study URI:", uri); - query = getFactoidsForFieldOfStudy(uri); - break; - case "relationship": - if (uri.includes('/taxonomy/')) { - uri = uri.replace('/taxonomy/', '/prop/'); - } - console.log("Relationship URI:", uri); - - query = getFactoidsForRelationshipWithLabels(uri); - break; - case "allPersonFactoids": - query = getAllPersonFactoids(); - console.log("Query:", query); - break; - default: - console.warn(`Unsupported type: ${type}`); - return []; - } - - console.log("SPARQL query being sent:", 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); - throw new Error(`SPARQL HTTP error ${res.status}`); - } - - const data = await res.json(); - - if (!data.results?.bindings) { - console.warn("No 'bindings' in response:", data); - return []; - } - - return data.results.bindings.map(b => ({ - uri: b.factoid?.value ?? '', - description: b.description?.value ?? '', - label: b.label?.value ?? '', - person: b.person?.value ?? '', - type: b.type?.value ?? '' - })); - } catch (err) { - console.error("Failed to fetch factoids:", err); - return []; - } -} - - - - - curl -G "https://sparql.vanderbilt.edu/sparql" \ - --data-urlencode 'query= - PREFIX swdt: - SELECT DISTINCT ?keyword - FROM - WHERE { - ?event swdt:event-keyword ?keyword . - } - ORDER BY ?keyword - ' \ - -H "Accept: application/sparql-results+json" - - - curl -G "https://sparql.vanderbilt.edu/sparql" \ - --data-urlencode 'query= - PREFIX rdfs: -PREFIX schema: -PREFIX swdt: - -SELECT DISTINCT ?person ?label_en ?description (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) ?occupation -WHERE { - GRAPH { - { ?person ?p ?o } UNION { ?s ?p ?person } - } - GRAPH { - ?person rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL {?person schema:description ?description} - OPTIONAL { ?person swdt:gender ?gender } - OPTIONAL { ?person swdt:occupation ?occupation } - } -} -ORDER BY ?label_en - ' \ - -H "Accept: application/sparql-results+json" \ No newline at end of file diff --git a/dev-neptune-queries/menuqueries.js b/dev-neptune-queries/menuqueries.js deleted file mode 100644 index 31d0a4dff..000000000 --- a/dev-neptune-queries/menuqueries.js +++ /dev/null @@ -1,285 +0,0 @@ -export const getEventKeywords = () => ` - PREFIX swdt: - - SELECT DISTINCT ?keyword - FROM - WHERE { - ?event swdt:event-keyword ?keyword . - } - ORDER BY ?keyword -`; -// Create Winona style list -export async function renderKeywordList(query, itemsId, listId, labelField = "label", valueField = "value", onSelect) { - const listEl = document.getElementById(itemsId); - const pageSize = 50; - let offset = 0; - let loading = false; - let endReached = false; - - async function loadNextPage() { - if (loading || endReached) return; - loading = true; - - const pagedQuery = `${query}\nOFFSET ${offset}\nLIMIT ${pageSize}`; - try { - const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(pagedQuery)}`, { - headers: { Accept: 'application/sparql-results+json' } - }); - const data = await res.json(); - const results = data.results.bindings; - - if (results.length === 0) { - endReached = true; - return; - } - - results.forEach(binding => { - const uri = binding[valueField]?.value || ""; - const label = binding[labelField]?.value || uri; - - const li = document.createElement("li"); - li.style.marginBottom = "0.75rem"; - li.style.fontFamily = "Georgia, serif"; - li.style.fontSize = "1.05rem"; - li.style.cursor = "pointer"; - li.style.padding = "0.5rem"; - li.style.borderBottom = "1px solid #ddd"; - li.textContent = label; - - li.addEventListener("click", () => { - onSelect(uri); - }); - - listEl.appendChild(li); - }); - - offset += pageSize; - } catch (err) { - console.error("Failed to load keywords:", err); - } finally { - loading = false; - } - } - - loadNextPage(); - - const container = document.getElementById(listId); - container.addEventListener("scroll", () => { - const threshold = container.scrollHeight - container.clientHeight - 50; - if (container.scrollTop >= threshold) { - loadNextPage(); - } - }); -} - -export const getEthnicityOptions = () => ` - PREFIX swdt: - - SELECT DISTINCT ?ethnicity - FROM - WHERE { - ?person swdt:ethnic-label ?ethnicity . - } - ORDER BY ?ethnicity -`; -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 SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; - -export const getPlaceOptions = () => ` -PREFIX rdf: -PREFIX rdfs: -PREFIX lawd: - -SELECT DISTINCT ?place ?label ?relationType -FROM -FROM -WHERE { - { - ?person ?place . - BIND("residence" AS ?relationType) - ?place rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - UNION - { - ?person ?place . - BIND("birth-place" AS ?relationType) - ?place rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - UNION - { - ?person ?place . - BIND("death-place" AS ?relationType) - ?place rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - UNION - { - ?event ?place . - ?event ?person . - BIND("event-place" AS ?relationType) - ?place rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - UNION - { - ?person ?place . - BIND("citizenship" AS ?relationType) - ?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 - `; - -// Generic loader for any dropdown -export async function populateDropdown(query, dropdownId, labelField = "label", valueField = "value") { - try { - const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { - headers: { Accept: 'application/sparql-results+json' } - }); - const data = await res.json(); - const select = document.getElementById(dropdownId); - select.innerHTML = ''; // Clear existing options - - data.results.bindings.forEach(binding => { - const option = document.createElement("option"); - const label = binding[labelField]?.value || binding[valueField].value; - option.value = binding[valueField].value; - option.textContent = label; - select.appendChild(option); - }); - } catch (err) { - console.error("Dropdown load failed:", err); - } -} -// Load related people for a selected value: should data returned labeled gender or sex? This one uses gender -export async function fetchPeopleRelatedToKeyword(uri, relation) { - if (relation === 'relationship') { - uri = uri.replace('/taxonomy/', '/prop/'); - } - const keywordQueryMap = { - event: ` - PREFIX rdfs: - PREFIX schema: - PREFIX swdt: - - SELECT DISTINCT - (STR(?p) AS ?person) - (STR(?label_en) AS ?label) - (STR(?desc) AS ?description) - (STRAFTER(STR(?sex), "/taxonomy/") AS ?gender) - FROM - FROM NAMED - WHERE { - ?p rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL { ?p schema:description ?desc } - OPTIONAL { ?p swdt:gender ?sex } - { - GRAPH { - ?event swdt:event-keyword <${uri}> ; - swdt:event-participant ?p . - } - } - } - ORDER BY ?label_en - `, - ethnicity: ` - PREFIX swdt: - SELECT DISTINCT ?person - FROM - WHERE { - ?person swdt:ethnic-label <${uri}> . - } - ORDER BY ?person - `, - relationship: ` - PREFIX rdfs: - PREFIX schema: - - SELECT DISTINCT ?person ?label ?description - FROM - FROM NAMED - WHERE { - ?person rdfs:label ?label . - FILTER(LANG(?label) = "en") - OPTIONAL { ?person schema:description ?description } - GRAPH { - ?person <${uri}> ?o - } - } - ORDER BY ?label - `, - place: ` - PREFIX swdt: - PREFIX rdfs: - PREFIX schema: - SELECT DISTINCT - (STR(?p) AS ?person) - (STR(?label_en) AS ?label) - (STR(?desc) AS ?description) - (STRAFTER(STR(?sex), "/taxonomy/") AS ?gender) - FROM - FROM NAMED - WHERE { - ?p rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL { ?p schema:description ?desc } - OPTIONAL { ?p swdt:gender ?sex } - { - GRAPH { - { ?person swdt:residence <${uri}> } UNION - { ?person swdt:citizenship <${uri}> } UNION - { ?person swdt:birth-place <${uri}> } UNION - { ?person swdt:death-place <${uri}> } UNION - { - ?event swdt:event-place <${uri}> ; - swdt:event-participant ?person . - } - } - } - ORDER BY ?person - ` - }; - - const query = keywordQueryMap[relation]; - if (!query) return []; - - const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`, { - headers: { Accept: 'application/sparql-results+json' } - }); - const data = await res.json(); - return data.results.bindings.map(b => ({ - person: b.person.value, - label: b.label?.value || "", - description: b.description?.value || "", - gender: b.gender?.value || "" - })); -} - - diff --git a/dev-neptune-queries/og-styling-browse.html b/dev-neptune-queries/og-styling-browse.html deleted file mode 100644 index bfa6fc0bf..000000000 --- a/dev-neptune-queries/og-styling-browse.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - Event Keyword Explorer - - - -

Browse Event & Relationship Keywords

-
- - -
-
Related Persons will appear here.
-
Related Factoids will appear here.
-
-
- - - - diff --git a/dev-neptune-queries/personqueries.js b/dev-neptune-queries/personqueries.js deleted file mode 100644 index 5805a8cbe..000000000 --- a/dev-neptune-queries/personqueries.js +++ /dev/null @@ -1,216 +0,0 @@ -import event from "../modes/event"; - -export const SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; - -export const getNames = () => ` -PREFIX rdfs: - -SELECT DISTINCT ?person ?label_en -FROM -FROM NAMED -WHERE { - ?person rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - { - GRAPH { - { ?person ?anyPredicate ?anyObject } - UNION - { ?anySubject ?anyPredicate ?person } - } - } -} -ORDER BY ?label_en -`; -//9 seconds: 902 results -export const getPeopleProfiles = () => - ` -PREFIX rdfs: -PREFIX schema: -PREFIX swdt: - -SELECT DISTINCT ?person ?label_en ?description (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) -WHERE { - GRAPH { - { ?person ?p ?o } UNION { ?s ?p ?person } - } - GRAPH { - ?person rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL {?person schema:description ?description} - OPTIONAL { ?person swdt:gender ?gender } - } -} -ORDER BY ?label_en - `; - -// Get people profiles with labels and descriptions and occupations -export const getPeopleNamesGenderOccupation = () => - ` -PREFIX rdfs: -PREFIX schema: -PREFIX swdt: - -SELECT DISTINCT ?person ?label_en ?description (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) ?occupation -WHERE { - GRAPH { - { ?person ?p ?o } UNION { ?s ?p ?person } - } - GRAPH { - ?person rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL {?person schema:description ?description} - OPTIONAL { ?person swdt:gender ?gender } - OPTIONAL { ?person swdt:occupation ?occupation } - } -} -ORDER BY ?label_en - `; - - // Curl test version -// curl -G "https://sparql.vanderbilt.edu/sparql" \ -// --data-urlencode 'query= -// PREFIX rdfs: -// PREFIX schema: -// PREFIX swdt: -// PREFIX spr: -// PREFIX sps: - - -// SELECT DISTINCT ?factoid ?person ?label_en ?description ?gender (STRAFTER(STR(?occupation), "/persons/") AS ?occupation) -// WHERE { -// GRAPH { -// ?statementNode sps:event-participant ?person ; -// spr:reference-URL ?factoid . -// OPTIONAL { ?person swdt:occupation ?occupation } - -// } -// GRAPH { -// ?person rdfs:label ?label_en . -// FILTER(LANG(?label_en) = "en") -// OPTIONAL {?person schema:description ?description} -// OPTIONAL { ?person swdt:gender ?gender } -// OPTIONAL { ?person swdt:occupation ?occupation } -// } -// } -// ORDER BY ?label_en -// ' \ -// -H "Accept: application/sparql-results+json" - -// Limits and offsets do not save api call time, unfortunately -export const getPeopleProfilesLimited = (limit = 25, offset = 0) => - ` -PREFIX rdfs: -PREFIX schema: -PREFIX swdt: - -SELECT DISTINCT - (STR(?person) AS ?uri) - (STR(?label_en) AS ?name) - (STR(?desc) AS ?description) - (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) -FROM -FROM NAMED -WHERE { - ?person rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL {?person schema:description ?desc} - OPTIONAL { ?person swdt:gender ?gender } - - { - GRAPH { - { ?person ?anyPredicate ?anyObject } - UNION - { ?anySubject ?anyPredicate ?person } - } - } -} -ORDER BY ?label_en -LIMIT ${limit} -OFFSET ${offset} -`; - -export const getPersonByUri = (uri) => - ` -PREFIX rdfs: -PREFIX schema: -PREFIX swdt: - -SELECT DISTINCT - (STR(?label_en) AS ?name) - (STR(?desc) AS ?description) - (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) -FROM -WHERE { - <${uri}> rdfs:label ?label_en . - FILTER(LANG(?label_en) = "en") - OPTIONAL <${uri}> schema:description ?desc - OPTIONAL { <${uri}> swdt:gender ?gender } -} -`; -//Example: -// curl -G https://sparql.vanderbilt.edu/sparql \ -// --data-urlencode 'query= -// PREFIX rdfs: -// PREFIX schema: -// PREFIX swdt: - -// SELECT DISTINCT -// (STR(?label_en) AS ?name) -// (STR(?desc) AS ?description) -// (STRAFTER(STR(?gender), "/taxonomy/") AS ?sex) -// FROM -// WHERE { -// rdfs:label ?label_en . -// FILTER(LANG(?label_en) = "en") -// schema:description ?desc . -// OPTIONAL { swdt:gender ?gender } -// }' \ -// -H 'Accept: application/sparql-results+json' - -// Run this to get the source data for all persons in spear with gender triples -// curl -G "https://sparql.vanderbilt.edu/sparql" \ -// --data-urlencode 'query= -// PREFIX rdfs: -// PREFIX schema: -// PREFIX spr: -// PREFIX swdt: -// PREFIX sp: -// PREFIX sps: - -// SELECT DISTINCT ?person ?label_en ?label_syr -// (GROUP_CONCAT(DISTINCT ?desc_en; SEPARATOR=" ") AS ?description) -// ?factoid ?source -// WHERE { -// GRAPH { - -// # --- LIMIT TO PERSONS WITH A GENDER TRIPLE --- -// ?person swdt:gender ?gender . - -// # Labels -// OPTIONAL { -// ?person rdfs:label ?label_en . -// FILTER(LANG(?label_en) = "en") -// } -// OPTIONAL { -// ?person rdfs:label ?label_syr . -// FILTER(LANG(?label_syr) = "syr") -// } - -// # Descriptions (English only for speed) -// OPTIONAL { -// ?person schema:description ?desc_en . -// FILTER(LANG(?desc_en) = "en") -// } - -// # Factoids and sources -// OPTIONAL { -// ?person ?p ?statement . -// ?statement spr:reference-URL ?factoid . -// OPTIONAL { ?factoid spr:part-of-series ?source } -// } -// } -// } -// GROUP BY ?person ?label_en ?label_syr ?factoid ?source -// ORDER BY ?person -// ' \ -// --data-urlencode 'format=json' \ No newline at end of file diff --git a/dev-neptune-queries/prettylist.js b/dev-neptune-queries/prettylist.js deleted file mode 100644 index e8b140efe..000000000 --- a/dev-neptune-queries/prettylist.js +++ /dev/null @@ -1,72 +0,0 @@ -export const SPARQL_ENDPOINT = "https://sparql.vanderbilt.edu/sparql"; - -// Create Winona style list -export async function renderEventKeywordList(query, listId, labelField = "label", valueField = "value", onSelect) { - const listEl = document.getElementById(listId); - const pageSize = 50; - let offset = 0; - let loading = false; - let endReached = false; - - function prettify(uri) { - const raw = uri.split('/').pop(); - return raw - .replace(/[-_]/g, ' ') // Replace dashes/underscores with spaces - .replace(/\b\w/g, c => c.toUpperCase()); // Capitalize first letter of each word - } - - async function loadNextPage() { - if (loading || endReached) return; - loading = true; - - const pagedQuery = `${query}\nOFFSET ${offset}\nLIMIT ${pageSize}`; - try { - const res = await fetch(`${SPARQL_ENDPOINT}?query=${encodeURIComponent(pagedQuery)}`, { - headers: { Accept: 'application/sparql-results+json' } - }); - const data = await res.json(); - const results = data.results.bindings; - - if (results.length === 0) { - endReached = true; - return; - } - - results.forEach(binding => { - const uri = binding[valueField]?.value || ""; - const prettyLabel = prettify(uri); - - const li = document.createElement("li"); - li.style.marginBottom = "0.75rem"; - li.style.fontFamily = "Georgia, serif"; - li.style.fontSize = "1.05rem"; - li.style.cursor = "pointer"; - li.style.padding = "0.5rem"; - li.style.borderBottom = "1px solid #ddd"; - li.textContent = prettyLabel; - - li.addEventListener("click", () => { - onSelect(uri); - }); - - listEl.appendChild(li); - }); - - offset += pageSize; - } catch (err) { - console.error("Failed to load keywords:", err); - } finally { - loading = false; - } - } - - loadNextPage(); - - const container = document.getElementById("eventKeywordList"); - container.addEventListener("scroll", () => { - const threshold = container.scrollHeight - container.clientHeight - 50; - if (container.scrollTop >= threshold) { - loadNextPage(); - } - }); -} diff --git a/dev-neptune-queries/search.js b/dev-neptune-queries/search.js deleted file mode 100644 index 6aac18b54..000000000 --- a/dev-neptune-queries/search.js +++ /dev/null @@ -1,226 +0,0 @@ -const state = { - selectedEventKeywords: new Set(), - selectedRelationshipKeywords: new Set(), - ethnicity: '', - gender: '', - uncertainty: '', - place: '', - fieldOfStudy: '', - currentTab: 'factoids' -}; - -import { SPARQL_ENDPOINT } from './constants.js'; - -export async function fetchFactoidsWithFilters(state) { - const query = buildFilterQuery(state); - const url = `${SPARQL_ENDPOINT}?query=${encodeURIComponent(query)}`; - - try { - const response = await fetch(url, { - headers: { - 'Accept': 'application/sparql-results+json' - } - }); - - if (!response.ok) { - const text = await response.text(); - console.error('SPARQL query failed:', response.status, text); - return []; - } - - const data = await response.json(); - const bindings = data?.results?.bindings || []; - - return bindings.map(binding => ({ - uri: binding.factoid?.value || '', - description: binding.description?.value || '', - person: binding.person?.value || '', - label: binding.label?.value || '', - gender: binding.gender?.value?.split('/').pop() || '' - })); - } catch (error) { - console.error('Failed to fetch factoids:', error); - return []; - } -} - -// BUILD THE SQL QUERIES CUSTOM, MULTIFIELD -export function buildFilterQuery(state) { - const eventPatterns = Array.from(state.selectedEventKeywords || []).map(uri => ` - { - ?statementNode sps:event-keyword <${uri}> . - } - `); - - const relationshipPatterns = Array.from(state.selectedRelationshipKeywords || []).map(uri => ` - { - ?person <${uri}> ?statementNode . - } - `); - - const ethnicityPattern = state.ethnicity - ? ` - ?person swdt:ethnic-label <${state.ethnicity}> . - ?person sp:ethnic-label ?ethnicityStmt . - ` - : ''; - - const genderPattern = state.gender - ? ` - ?person swdt:gender <${state.gender}> . - ` - : ''; - - const uncertaintyFilter = state.uncertainty - ? ` - FILTER NOT EXISTS { - ?factoid spq:certainty ?level . - FILTER(LCASE(STR(?level)) = "${state.uncertainty.toLowerCase()}") - } - ` - : ''; - - const unionBlocks = [...eventPatterns, ...relationshipPatterns]; - const unionBlock = unionBlocks.length - ? `FILTER EXISTS { - ${unionBlocks.join('\n UNION\n')} - }` - : ''; - - return ` -PREFIX rdfs: -PREFIX schema: -PREFIX spr: -PREFIX swdt: -PREFIX sp: -PREFIX sps: -PREFIX spq: - -SELECT DISTINCT ?factoid ?description ?person ?label ?gender -FROM -FROM -WHERE { - ?statementNode spr:reference-URL ?factoid . - - OPTIONAL { ?factoid schema:description ?description . } - - OPTIONAL { - ?statementNode ?p ?person . - ?person rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - - ${ethnicityPattern} - ${genderPattern} - ${uncertaintyFilter} - ${unionBlock} - ${placePattern} - ${fieldOfStudyPattern} - -} -ORDER BY ?label -LIMIT 200 -`; -} - - -const placePattern = state.place - ? ` - { - ?person swdt:birth-place <${state.place}> ; - sp:birth-place ?placeStatement . - } UNION { - ?person swdt:death-place <${state.place}> ; - sp:death-place ?placeStatement . - } UNION { - ?person swdt:residence <${state.place}> ; - sp:residence ?placeStatement . - } UNION { - ?event swdt:event-place <${state.place}> ; - sp:event-place ?placeStatement . - } - ?placeStatement spr:reference-URL ?factoid . - ` - : ''; - -const fieldOfStudyPattern = state.fieldOfStudy - ? ` - ?statementNode sps:education <${state.fieldOfStudy}> ; - spr:reference-URL ?factoid . - ` - : ''; - -export function buildFilterQuery(state) { - const eventPatterns = Array.from(state.selectedEventKeywords || []).map(uri => ` - { - ?statementNode sps:event-keyword <${uri}> . - } - `); - - const relationshipPatterns = Array.from(state.selectedRelationshipKeywords || []).map(uri => ` - { - ?person <${uri}> ?statementNode . - } - `); - - const ethnicityPattern = state.ethnicity - ? ` - ?person swdt:ethnic-label <${state.ethnicity}> . - ?person sp:ethnic-label ?ethnicityStmt . - ` - : ''; - - const genderPattern = state.gender - ? ` - ?person swdt:gender <${state.gender}> . - ` - : ''; - - const uncertaintyFilter = state.uncertainty - ? ` - FILTER NOT EXISTS { - ?factoid spq:certainty ?level . - FILTER(LCASE(STR(?level)) = "${state.uncertainty.toLowerCase()}") - } - ` - : ''; - - const unionBlocks = [...eventPatterns, ...relationshipPatterns]; - const unionBlock = unionBlocks.length - ? `FILTER EXISTS { - ${unionBlocks.join('\n UNION\n')} - }` - : ''; - - return ` -PREFIX rdfs: -PREFIX schema: -PREFIX spr: -PREFIX swdt: -PREFIX sp: -PREFIX sps: -PREFIX spq: - -SELECT DISTINCT ?factoid ?description ?person ?label ?gender -FROM -FROM -WHERE { - ?statementNode spr:reference-URL ?factoid . - - OPTIONAL { ?factoid schema:description ?description . } - - OPTIONAL { - ?statementNode ?p ?person . - ?person rdfs:label ?label . - FILTER(LANG(?label) = "en") - } - - ${ethnicityPattern} - ${genderPattern} - ${uncertaintyFilter} - ${unionBlock} -} -ORDER BY ?label -LIMIT 200 -`; -} diff --git a/dev-neptune-queries/spear_persons.json b/dev-neptune-queries/spear_persons.json deleted file mode 100644 index 954e13ec7..000000000 --- a/dev-neptune-queries/spear_persons.json +++ /dev/null @@ -1,15623 +0,0 @@ -{ - "head" : { - "vars" : [ "person", "label_en", "description", "sex" ] - }, - "results" : { - "bindings" : [ { - "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" : "Aaron is a presbyter from Armenia who is commemorated in the Lives of the Eastern Saints by John of Ephesus ." - } - }, { - "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" : "Monk and associate of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2200" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abgar VI" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2201" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abgar VIII" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1547" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham is commemorated in Abraham, Cyriacus, Barhadbeshabba and Sergius (text) in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "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 is commemorated in Abraham and Maron (text) in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "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" : "Abraham is commemorated in Addai and Abraham (text) in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2202" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of the Urtaye" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 III, the shepherd" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3188" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham IV" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham IV" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1113" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham Qidounaya" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham Qidūnāyā was an anchorite whose niece, Mary, fell from the ascetic life but was redeemed through his love." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Amida" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1554" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham the Priest" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Abraham the Priest features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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" : "Abraham the Recluse is a saint who features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2203" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Addai" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Aday was commemorated by John of Ephesus in his Lives of the Eastern Saints. He built twelve monasteries with his brother Abraham ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1116" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Addai the Chorepiscos" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aday Khurʾepesqupa was a monk and chorepiscopus commemorated in John of Ephesus' Lives of the Eastern Saints." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2549" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Adelphius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The source of an antionomian heresy with followers in Armenia, Cappadocia, Pontus, and Galatia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Oppressor of the church of Antioch according to Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter mentioned in a letter by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2538" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aeneas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aeneas was a presbyter and monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3192" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Afwrsm" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk who lived north of Amida" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3193" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Agapetus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Pope" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2426" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Agapius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A bishop whose offences came to the attention of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/326" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aitalaha" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Edessa (324/5-345/6)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2484" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Alexander" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Constantinople who opposed Arius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Vindex of Anazarba" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria who took part in the council of Nicaea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A boy mentioned in a letter to Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2584" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ambrose" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Milan" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2592" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ammantius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Chamberlain and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Scholastic of Bostra and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter of Alexandria and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Deaconess and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A hypatissa and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Anastasius ruled the Roman Empire from 491 to 518. The wealth of the imperial treasury increased considerably during his reign. He was the last emperor who did not insist on the orthodoxy of the council of Chalcedon and, in his last years, allowed the accession of anti-Chalcedonian bishops to major episcopal sees, such as Severus in Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A count and correspondent of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2435" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anastasius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Described by Severus of Antioch as magnificient (Syr., ܦܐܐ ܒܪܒܘܬܐ; Gk., megaloprepestatos)" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2599" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anastasius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rome" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2204" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anatolios" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2516" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anatolius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A former resident of Tarsus ordained deacon of Antioch by Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2601" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anatolius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A deacon mentioned in a letter from Severus of Antioch to Oecumenius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2602" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anatolius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Described by Severus of Antioch as a false prophet" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon who married a second time after his ordination" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2205" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Andreos" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/891" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Andreos" - } - }, { - "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" : "An archimandrite in Caria and recipient of a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A reader and notary who received letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2210" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2210" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2216" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2216" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2218" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2218" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2221" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2221" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A group of monks expelled from their monasteries for refusing to accept the Council of Chalcedon." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2229" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2229" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2230" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2230" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2232" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 2232" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - } - }, { - "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)." - } - }, { - "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)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3034" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3034" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3035" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3035" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3036" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3036" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3037" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3037" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3038" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3038" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3039" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3039" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3040" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3040" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3041" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3041" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3043" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3043" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3044" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3044" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3045" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3045" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3046" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3046" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3047" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3047" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3048" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3048" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3049" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3049" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3050" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3050" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3051" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3051" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3052" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3052" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3053" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3053" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3054" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3054" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3055" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3055" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3059" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3059" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3060" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3060" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3061" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3061" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3062" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3062" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3063" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3063" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3065" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3065" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3066" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3066" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3067" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3067" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3071" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3071" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3072" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3072" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3074" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3074" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3075" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3075" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3076" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3076" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3077" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3077" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3078" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3078" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3079" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3079" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3080" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3080" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3081" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3081" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3084" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3084" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3085" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3085" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3086" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3086" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3088" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3088" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3089" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3089" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3091" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3091" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3095" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3095" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3096" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3096" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3099" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3099" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3100" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3100" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3101" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3101" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3103" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3103" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3105" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3105" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3106" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3106" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3108" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3108" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3110" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3110" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3111" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3111" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3112" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3112" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3113" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3113" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3115" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3115" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3116" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3116" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3117" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3117" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3124" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3124" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3126" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3126" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3127" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3127" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3129" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3129" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3130" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3130" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3131" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3131" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3132" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3132" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3133" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3133" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3134" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3134" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3135" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3135" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3136" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3136" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3601" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3601" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3602" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3602" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3603" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3603" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3604" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3604" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3608" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3608" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3609" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3609" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3610" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3610" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3611" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3611" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3612" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3612" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3613" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3613" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3618" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3618" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3619" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3619" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3620" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3620" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3622" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3622" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3631" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3631" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3633" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3633" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3636" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3636" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3640" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3640" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3641" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3641" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3642" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3642" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3643" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3643" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3644" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3644" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3646" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3646" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3648" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3648" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3649" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3649" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3657" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3657" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3685" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3685" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3686" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3686" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3687" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3687" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3689" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3689" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3692" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3692" - } - }, { - "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" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3698" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3698" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3699" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3699" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3700" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3700" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3702" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3702" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3704" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3704" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3705" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3705" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3706" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3706" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Two monks in the Ennaton who were disciples of Anonymous 3717" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - } - }, { - "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" : "The holy fathers of the monastery of John and Theodore who corresponded with Severus of Antioch during his episcopacy" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3726" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3726" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Fathers who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3732" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3732" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishops from Syria resident in Alexandria in 519-20 to whom Severus wrote a letter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3735" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3735" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The bishops in Cilicia Prima who heard the case against Julian the presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3736" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3736" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The scholastics who heard the case against Julian the presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The ekklesiekdikoi of Antioch under Severus of Antioch who brought charges against Nonnus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3744" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3744" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Certain Jewish people who sold a Christian slave" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3746" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3746" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The clergy under Stephen whom he sent after the bishops who fled Isauria in the face of Chalcedonian persecution" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3752" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3752" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sisters in the monastery headed by Heracliana who were involved in a conflict between Heracliana and Anonymous 3751" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3753" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymi 3753" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The non-Chalcedonian clergy of Emesa who received a letter from Severus of Antioch sometime between 519-520" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - } - }, { - "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." - } - }, { - "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" - } - }, { - "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" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1932" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 1932" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1988" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 1988" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 1988 is a saint commemorated in the Lives of the Eastern Saints by John of Ephesus ." - } - }, { - "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" : "An anonymous person or group of persons mentioned in The Chronicle of Edessa (circa mid 6th century)." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3032" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3032" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3033" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3033" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3042" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3042" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3056" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3056" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3057" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3057" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3058" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3058" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3064" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3064" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3068" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3068" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3069" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3069" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3070" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3070" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3073" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3073" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3082" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3082" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3083" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3083" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3087" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3087" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3090" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3090" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3092" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3092" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3093" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3093" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3097" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3097" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3098" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3098" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3102" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3102" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3114" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3114" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3119" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3119" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3120" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3120" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3121" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3121" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3122" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3122" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3123" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3123" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3128" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3128" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3191" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3191" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A King of Aethiopia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3196" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3196" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A banker (τραπεζίτης)" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3236" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3236" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A marzban" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A Persian Queen, spouse of Khosrow I" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3605" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3605" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3606" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3606" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3607" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3607" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3615" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3615" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3616" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3616" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3617" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3617" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3623" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3623" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3624" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3624" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3625" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3625" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3626" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3626" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3627" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3627" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3628" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3628" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3629" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3629" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3630" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3630" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3632" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3632" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3634" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3634" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3635" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3635" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3637" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3637" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3638" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3638" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3639" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3639" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3645" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3645" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3647" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3647" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3652" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3652" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3653" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3653" - } - }, { - "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." - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3658" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3658" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3659" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3659" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3660" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3660" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3661" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3661" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3662" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3662" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3663" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3663" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3664" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3664" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3665" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3665" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3667" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3667" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3668" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3668" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3669" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3669" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3670" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3670" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3671" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3671" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3672" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3672" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3673" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3673" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3674" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3674" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3675" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3675" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3676" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3676" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3677" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3677" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3678" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3678" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3679" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3679" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3680" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3680" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3681" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3681" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3682" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3682" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3683" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3683" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3684" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3684" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3688" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3688" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3690" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3690" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3691" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3691" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3694" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3694" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3695" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3695" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3696" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3696" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3697" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3697" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3701" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3701" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3717" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3717" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The monk in the Ennaton from whom Anonymous 3718 stole" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The monk who stole, subject of John of Ephesus' Life of that name" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3720" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3720" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A disciple of John of Ephasus who interacted with Priscus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A woman who corresponded with Severus of Antioch regarding questions about marriage and divorce" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3724" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3724" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A governor of Isauria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The daughter of Proclus, bishop of Colonia" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3730" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3730" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A man who converted from Diphysite to Miaphysite Christianity" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The archimandrite of Qalʿat Simʿān during the episcopacy of Severus of Antioch and recipient of a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The wife of Calliopius and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3740" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3740" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A priest in Apamea who had been deprived of his clerical office; the subject of a letter of Severus of Antioch to Eutychian the governor of Apamea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The bishop of Antardus who removed the deacon Leontius from the sacred tables but allowed him to continue ministering" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An enslaved man sold by Anonymi 3744" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3747" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3747" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A boy siezed with a severe illness" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The deacon who baptized Anonymous 3747" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3749" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3749" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A boy who could not make a profession of faith before baptism" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3754" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3754" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A dead boy whom Isaiah tried to resurrect" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The father of Anonymous 3754" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The mother of Abba Poemen" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A fellow monastic along with Isidora" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A monk, the brother of James, both of whom are commemorated by John of Ephesus in the life Two Monks" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3761" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3761" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A woman possessed by demons in order to tempt James" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A monk commemorated by John of Ephesus in the life A Monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An older kinsman of Harfat" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A believing lady who assisted Harfat" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A chamberlain of the Empress Theodora" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A chamberlain of the Empress Theodora" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3773" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3773" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The subject of a letter of Severus of Antioch. He was accused of abandoning his wife and children to enter a monastery." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3774" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3774" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The daughter of Conon the silentiary" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "The wife of Theodore the tribune and notary" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "The bishop of Arca" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A bishop of Scythopolis denounced by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3784" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Anonymous 3784" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An Ethiopian monk from the monastery of Romanus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Comes Orientis sometime between 513-518" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 was a sixth-century Miaphysite Patriarch of Constantinople who is commemorated by John of Ephesus in the Lives of the Eastern Saints." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 was bishop of Trebizond in north-eastern Asia Minor when Justinian chose him as new patriarch of Constantinople. Probably on imperial orders, Anthimus approached the leading miaphysites of his day, Severus of Antioch and Theodosius of Alexandria. Because of this, opponents started claiming that he had condemned Chalcedon and entered into communion with Severus. Resistance to him grew in Constantinople and his position became untenable when the staunchly Chalcedonian Roman bishop Agapetus visited the capital in March 536. He stepped down as bishop and, together with many other miaphysites, enjoyed the protection of the empress Theodora until her death in 548." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A tribune who was sent with messages to Severus of Antioch from Antoninus, the bishop of Berrhoea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Involved in a dispute with the monk Isaac that came before Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The bishop of Berrhoea and recipient of letters from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/10" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aphrahat" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Syriac author of 23 ‘Demonstrations’, known as ‘the Persian Sage’." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/10" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Aphrahat" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Aphrahat was known as an anchorite who converted from Zoroastrianism to Christianity and fought Arianism in Antioch ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2499" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Apollinaris" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Laodicea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk and a presbyter, also an associate of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2266" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Arcadius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A reader from Tyre and recipient of a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2607" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ascalon" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A person mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2236" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Asclepius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A prefect who expressed imperial displeasure at anti-Chalcedonian statements" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Calenderis" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2609" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Asterius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Nyssa and brother of Soteric" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2612" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Athanasius II" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria following Peter III" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bp. of Alexandria and Greek author." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2238" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Augustus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A scholastic of bostra and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2615" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Auxentius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Milan" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/969" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Babai" - } - }, { - "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" : "A monastic head of the monastery of Fyṭr; Habib was his disciple" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bardaisan" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Earliest known Syriac author." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2239" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bardin" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1625" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Barhadbshabba" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Barhadbeshabba is commemorated in Abraham, Cyriacus, Barhadbeshabba and Sergius in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2240" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Barlaha" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2241" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Barsa" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Pompeiupolis in Isauria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon charged with ensuring proper execution of a ruling of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bp. of Caesarea and Greek author." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1630" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bassius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bassius is commemorated in Bassianus, Romanus, and Simeon (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 104v-105v ." - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2512" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bisula" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Germanicupolis" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The bishop of Colonia and a man of great virtue whose corpse performed miracles" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2243" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bulid" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A patrician and recipient of a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A hypatissa and recipient of letters from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A patrician and recipient of letters from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2459" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Callistus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An archdeacon accussed of buying his priestly order and status" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A Palestinian monk who excelled at gifts of the Spirit but was charged with illegally baptizing converts from the Chalcedonian belief." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Bostra" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Perge" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2624" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Chaeremon" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric described by Severus of Antioch as being a hireling and huckster of piety" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2626" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Charisius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Philadelphia in Lydia who exposed a creed by Theodore of Mopsuestia and Nestorius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2625" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Charisius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2246" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Commodus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2421" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Conon" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A brigand-chaser (lystodioktes) who supported the non-Chalcedonians" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2247" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Conon" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Seleusia and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Laodicea in Syria and an associate of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: Constantine was a bishop of Laodicea . He was a friend of Severus of Antioch and was present at many of the meetings of the Miaphysites that took place in Constantinople . He was a principal author of the canons of the Miaphysite community from the sixth century." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1655" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Constantine the Great" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Constantine the Great the Great was the Roman Emperor from 306 to 307 AD and is honored in Christian memory on account of the Edict of Milan in 313 AD which granted religious tolerance in the Roman Empire." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2249" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Constantius II" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2539" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cosmas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Apamea ordained by Severus of Antioch who eventually stepped down" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An archimandrite of the monastery of Cyrus who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter of Chalcis in Syria who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3200" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cosmas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of Caesaria" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "A patrician and sister of Thomas" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1650" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cosmos" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cosmos and Damian were twin medical saints and martyrs from Syria." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2498" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyprian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Carthage and martyr" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2630" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyriac" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric who led others astray but received clemency from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1664" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyriacus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyriacus is commemorated in Abraham, Cyriacus, Barhadbeshabba and Sergius in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "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" : "Patr. of Alexandria and Greek Church Father." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: Cyril of Alexandria was commemorated by the Syrian Orthodox Church as one of the fathers who championed one-nature Christology." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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, patriarch of Alexandria from 412 to 444, was one of the most powerful bishops of this time. An influential theologian, he clashed with Nestorius of Constantinople on the question of whether Mary could be addressed as Theotokos (bearer of God). Cyril ensured that Nestorius and his dyophysite Christology were condemned at the council of Ephesus in 431. In the sixth century, he was seen as a champion of orthodoxy by both miaphysites and Chalcedonians. The emperor Justinian, in his theological writings, sought to ensure that the decisions of the contentious council of Chalcedon were interpreted in line with Cyrillian Christology." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2632" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyrus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric who lapsed" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2251" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyrus I" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2253" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyrus II of Edessa" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Cyrus II of Edessa was commemorated as the miaphysite bishop of Edessa who closed the School of the Persians and expelled its members in 489 with the help of the Emperor Zeno ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2631" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cyrus the simple" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Pseudo-bishop" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3203" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dada" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monastic head of the monastery of Fyṭr" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1669" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Damian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Damian and Cosmos were twin medical saints and martyrs from Syria." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1671" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Daniel" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Daniel is commemorated in Daniel and Eulogius (text) , a work surviving in at least 1 manuscript: ms Damas, Patriarcat syrien orthodoxe, cod. 12/17 (olim ms Dayr az-Za‘faran, cod. parch. 18 (Dolabany)), f. 31v-33v ." - } - }, { - "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" : "Daniel is commemorated in Mari, Sergius, and Daniel (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 105v-106v ." - } - }, { - "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" : "A deacon and the nephew of Abraham the Priest" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2257" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Daniel of Harran" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2461" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Decius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Emperor who persecuted Christians" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2259" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Demosthenes" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3207" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dimet" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Laodicea in Syria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2258" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dimeṭ" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2261" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Diocletian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Diocletian ruled the Roman Empire from 284 to his abdication in 305. He stabilised the war-shaken Empire by nominating co-emperors, a system that became known as the Tetrarchy. In the last years of his reign, after 302, he turned against the growing Christian communities. Later authors like John of Ephesus therefore mainly remember him as one of the most cruel and savage Christian persecutors." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/451" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Diodore of Tarsus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Greek author of theological and exegetical works ( CPG 3815-22), bp. of Tarsus." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/451" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Diodore of Tarsus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Diodore of Tarsus is a Greek father who is also venerated by the Church of the East." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2262" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Diogenes" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tarsus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria who was involved in the debate about re-baptism of those baptized by heretics" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2634" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dionysius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rome and opponent of Arianism" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2636" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dioscorus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric described by Severus of Antioch as being a hireling and huckster of piety" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria and non-Chalcedonian champion." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2264" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Domnus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2638" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Dorotheus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mentioned in a letter of Severus of Antioch as someone who caused him trouble" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A count who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Marcianupolis who presented a petition to Marcian to recall Nestorius from exile" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Sasima" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A sacellarius and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Elijah and Theodore (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 83-86 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2541" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Elijah" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A deacon and monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1704" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Elijah of Dara" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Elijah of Dara is commemorated in Elia of Dara (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 83r (mutilé du début) ." - } - }, { - "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" : "Bishop of Jerusalem" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter and archimandrite who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2452" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Elpidius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Cestrus who was deprived of his bishopric at one point" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Anazarba who received several letters from Severus." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A correspondent of Severus of Antioch who requested a box filled with communion elements" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Deacon, poet, and theologian." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: Ephrem is commemorated as a doctor of the church and theologian. Ephrem's ecclesiastical career was based mainly in Nisibis and Edessa . He was the author of hymns, homilies, and prose. His fourth-century writings are remembered as a golden age of Syriac literature. His vita as recounted in hagiography differs greatly from historical accounts. One vita transforms him into a Byzantine monk, which is nevertheless a tribute to his importance in both the Syriac and Byzantine Greek churches." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Ephrem hailed from Roman Mesopotamia and was fluent in Syriac. He embarked on a military career and served as comes Orientis under Justin I. After the devastating earthquake which struck Antioch in May 526, he organised support for the afflicted population and thereby gained great popularity in Antioch. The people eventually chose him as new patriarch, a decision that was ultimately approved by the emperor." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2643" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Epimachus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rhinocorura and non-Chalcedonian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk and presbyter whose ordination Severus of Antioch opposed because he had been married twice" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An Isaurian bishop under the authority of Solon, Bishop of Seleucia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Magydum who went into exile in Alexandria and later Palestine" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tyre who withdrew himself from the authority of Severus of Antioch and the non-Chalcedonian cause" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2644" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eubulus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Paltus and recipient of a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2645" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eugenia" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A deaconess and archimandritess who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1718" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eulogius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eulogius is commemorated in Daniel and Eulogius (text) , a work surviving in at least 1 manuscript: ms Damas, Patriarcat syrien orthodoxe, cod. 12/17 (olim ms Dayr az-Za‘faran, cod. parch. 18 (Dolabany)), f. 31v-33v ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3209" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eunomius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Amida" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated along with Mary in Mary and Euphemia (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 40-45 and Add. 14651, f. 70v-81 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/479" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Euphemia , the martyr" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2277" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Euphemios" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A patriarch of Antioch about whom only very little is known, Euphrasius came to the episcopal throne in 521 and was in all likelihood a fierce persecutor of the miaphysites. He was killed in an earthquake that struck Antioch in 526, an end which for later miaphysite authors seemed fitting because of his deeds." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A chamberlain and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A chamberlain and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "eunuchs" - } - }, { - "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" : "Archimandrite of the monastery of Romanus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A count in Alexandria who gave away all of his property to the poor" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2649" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Antioch who assisted Severus in calling the bishop of Berytus to repentence" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2448" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter under Cyril of Alexandria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Deacon of Apamea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Deacon mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2648" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Pelusium criticized by Severus of Antioch for failing to comprehend the spiritual nature of the church" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/480" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius of Caesarea" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Greek Church Father, bp. of Caesarea (Palestine), and author of the first History of the Church and first universal Chronicle." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2280" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius of Dorylaeum" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Samosata, defender of Nicene orthodoxy against Arianism, and associate of the Cappadocian Fathers." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: In the Syriac version of Eusebius' Life , translated and commented upon by Devos, Eusebius had already become a Bishop of Samosata when he received a visit from Jacob of Nisibis , who allowed him to build a large church. He ordained priests and Bishops during the Arian controversy and was a good friend of the Cappadocians. He was killed by a blow to the head by an Arian woman." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2585" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eusebius the Scholastic" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Author of a letter against Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A Cappadocian bishop who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2497" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eustace" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric accused of wrongdoing by Hilarion and Musonius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2454" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eustochius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Deacon of Alexandria remembered by Severus of Antioch as a devout and orthodox deacon" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tyana who sought the return of Nestorius from exile" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/482" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eutyches" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eutyches was a controversial and polemical monastic teacher active in Constantinople in the early fifth century. He opposed dyophysite (two-nature) Christology, but the precise nature of his own one-nature Christology is uncertain. He was condemned in 448 at a synod, restored in 449 at the Second Council of Ephesus , and condemned again at the Council of Chalcedon where he was championed by the Syriac monk Barsauma . In later theological discussions, Eutyches' one-nature Christology was equally condemned by Chalcedonian theologians and the Coptic and Syriac Orthodox Churches." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/482" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eutyches" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eutyches was archimandrite of a monk in Constantinople and opposed the doctrine of the two natures in Christ. He was condemned as a heretic at the council of Chalcedon in 451 for supposedly denying the human nature in Christ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2420" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eutychian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Governor of Apamea whom Severus of Antioch accused of taking part in ceremonies conducted by a deposed bishop" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2505" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Evagrius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antioch accused of receiving uncanonical ordination from Paulinus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1731" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eve" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Eve is the first woman, according to the Jewish and Christian scriptures and was often included in hagiographical accounts of the Paradise ." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2457" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Fabius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2537" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Firminus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cleric of Paltus accused of misdeeds in a case overseen by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2282" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Flavian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2508" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Flavian I of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 represented the see of Antioch as ambassador in Constantinople before being made patriarch of Antioch by Anastasius in 498. He attempted to follow a middle course between adherents and opponents of Chalcedon until he lost imperial support in 512 and was replaced by the miaphysite champion Severus. Exiled to Petra, Flavian died in 518." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2654" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Gaian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria opposed by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2654" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Gaian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Gaianus was an Egyptian cleric and follower of the doctrine of Julian of Halicarnassus concerning the incorruptibility of Christ (Aphthartism). He was supported by a considerable part of the population of Alexandria after the death of Timothy IV in early 535; the new patriarch Theodosius was ousted and Gaianus acceded to the patriarchal throne for three months before a military expedition reinstalled Theodosius. Gaianus was sent into exile to the west, probably to Carthage." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter from Minidus who doubted whether those who lapsed into heresy, but were forgiven, ought to return to their former grade in the ministry" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Daughter of Anastasia and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2495" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Gregory" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Claimed to be a bishop and performed illegal ordinations until he was convicted" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Greek Church Father, and one of the three Cappadocian Fathers, whose influential writings earned him the title 'the theologian'." - } - }, { - "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" : "In hagiography: Gregory of Nazianzus was a Cappodocian father and doctor of the church." - } - }, { - "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" : "Greek Church Father. One of the three Cappadocian Fathers, and the brother of Basil and Macrina." - } - }, { - "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" : "Greek author ( CPG 1763–94). Several of his works were translated into Syriac, the most important of which is a 'Discourse on the Passible and Impassible in God', addressed to Theopompus, whose Greek original is lost (ed. de Lagarde, 46–64; ET in Slusser, 152–73)." - } - }, { - "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" : "A saint commemorated by John of Ephesus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1769" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hala" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hala is commemorated in Hala (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 88-90 and Add. 14735, f. 157v-159v ." - } - }, { - "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" : "Presbyter and disciple of Zeʿora" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Harphat is commemorated in Ḥarphat (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 38v-40 and Add. 7190, f. 337v-338v and Add. 14730, f. 125-129v and Add. 14650, f. 186-188 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2411" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Heliodorus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Curator of Hypatius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tarsus who sought the return of Nestorius from exile" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Caesarea in Cappadocia who had a dispute with Theodore Bishop of Tyana" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Deaconess and archimandritess who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2510" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hesychius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Presbyter of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/534" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hiba of Edessa" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Edessa ." - } - }, { - "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" : "Bishop of Diocaesarea in Isauria who brought charges against archdeacon Callistus on the ground that he had bought his priestly order and status" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Nicodemia who sought the return of Nestorius from exile" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2429" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hippocrates" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A man described by Severus of Antioch as learned and concerned with salvation and the observance of the orthodox faith" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2658" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hippocrates" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A scholastic of Alexandria who received a letter from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2267" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Honorios" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2659" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hosius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Archimandrite" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2493" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Hosius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Corduba" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Magister militum per Orientis and uncle of Antoninus, bishop of Berrhoea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter whom Severus of Antioch asked to settle a dispute in the village of Thelhadin" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/544" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ignatius of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Antioch , martyred in Rome." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/544" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ignatius of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Ignatius was an early Bishop of Antioch who was martyred under the Emperor Trajan. On his way to his martyrdom, Ignatius wrote letters to different Christian communities whom he knew." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Corycus considered unorthodox by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The brother of Anastasia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2463" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Irenaeus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Lyons who wrote Against Heresies" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2517" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Irenaeus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A former resident of Emesa ordained deacon of Antioch by Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2662" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Irenaeus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/847" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Irenaeus of Tyre" - } - }, { - "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" : "A scholastic and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Isaac (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 109v-110v ." - } - }, { - "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" : "Bishop of Apamea whose untimely death was lamented by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/33" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Isaac of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Priest and writer. According to a letter from Yaʿqub of Edessa to Yuḥanon of Litarba (Letter 14; ms. Brit. Libr. Add. 12,172, f. 123r-v), Isḥaq was a well-known priest in Edessa who flourished during the time of the emperor Zeno (ca. 474–91)." - } - }, { - "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" : "Claimed to be bishop of Emesa and ordained priests without the authority of the church until he was convicted" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1091" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Isaiah of Gaza" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3215" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Ishakuni Bar Brʿy" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A patrician from Egypt" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Resident of Tyre who reported to Severus of Antioch a dispute between the readers of Tyre and their bishop Epiphanius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2666" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Isidore" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk whom Severus of Antioch describes as deceitful and foxlike" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A count and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A tribune mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The bishop of Chalcis in Syria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3216" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Isidore" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A martyr" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - } - }, { - "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" : "Bp. of Edessa (542–578) and missionary." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 hagiography: Jacob Baradaeus is commemorated as a monk educated at the monastery of Phesilta . During the sixth-century struggle between miaphysite clergy and Chalcedonian bishops, Jacob ordained a separate hierarchy of miaphysite clergy. Because of his efforts, The Syrian Orthodox Church was sometimes called The Jacobite church. He also negotiated with the empress Theodora and Harith, the Ghassanid client king. He was ordained by Theodosius of Alexandria and travelled extensively to revive the miaphysite clergy." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 was of crucial importance for the development of an independent miaphysite Syrian church in the second half of the sixth century. Consecrated bishop of Edessa by Theodosius of Alexandria in c.542, Jacob ordained a large number of priests in the following years thoughout Syria, thereby ensuring the survival of the miaphysite movement despite Justinian's policy to install Chalcedonian bishops in every city. He was the most authoritative anti-Chalcedonian bishop in Rome's eastern provinces. His position was such that even Paul of Antioch had to ask for his forgiveness after he had entered Chalcedonian communion in the early 570s. Joh. Eph., EH 4.15-34 treats the last years of his life and his conflict with Paul of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/811" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jacob of Nisibis" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "First recorded bp. of Nisibis." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/811" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jacob of Nisibis" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Jacob was an important Bishop of Nisibis who built the large church of Nisibis. Ephrem the Syrian was deacon under him. He played an active role in the condemnation of Arius. The preservation of Nisibis when Shapur besieged it was attributed to his prayers." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 the apostle, known as the brother of the Lord." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1296" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jacob the Cut-Up" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jacob the cut-up was a noble Persian from the Royal City of Beth Lapaṭ . He became a Christian, but he later abjured his Christian identity. His family reproached him, so he confessed his faith before Bahram V and was martyred." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: James of the Monastery of the Edessenes is a wonderworking monk originally from Monastery of the Edessenes near Amida who was commemorated as one of two monks (the other unnamed) by John of Ephesus . He is mentioned as a contemporary who met with John of Tella ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An archimandritess and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2245" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jesus the Messiah" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jesus the Messiah is the central figure in the Christian religion. References to Christ are ubiquitous in Syriac literature and cannot be fully noted here." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2245" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jesus the Messiah" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jesus is the founder of Christianity, believed to be the son of God and Messiah." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk accussed of wrongdoing in a letter to Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2673" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Antioch whose death Severus of Antioch mourned" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A slave recommended to Severus of Antioch for ordination" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Presbyter and archimandrite, and recipient of letters from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A reader who interpreted dreama and prophesies" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Presbyter and archimandrite, and recipient of letters from Severus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A count" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Scholastic of Antioch whom Severus expresses an interest in ordaining as presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2677" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk of the monastery of ʿAkiba and associate of Stephen, bishop of Apamea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2670" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter, archimandrite, and stylite as well as a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2678" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter and logothete" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "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" : "Satrap of Balabitene" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2681" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A scholastic of Bostra and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Imperial chamberlain under Justinian and associate of Theodore Castrensis" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Founder and monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2438" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John Canopites" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Antioch ordained by Peter the Fuller" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bp. of Constantinople (398-404)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2449" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John I of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2449" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John I of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John was bishop of Antioch and a supporter of the dyophysite theology of Nestorius of Constantinople. This brought him into conflict with Cyril of Alexandria who condemned Nestorius at the council of Ephesus in 431. Peace between the episcopal sees of Antioch and Alexandria was restored in 433 when John accepted the condemnation of Nestorius." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2687" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John II (Hemula)" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/61" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John II of Qenneshre" - } - }, { - "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" : "Bishop of Alexandria and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria Minor and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2686" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John of Cappadocia" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Constantinople" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Claudiupolis who attempted to persuade Severus to accept Chalcedon as a condemnation of Nestorius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Born in 507 in Roman Mesopotamia, John became a monk already in his childhood. Since the late 530s, he mainly lived in Constantinople where he enjoyed good relations with Justinian despite his miaphysite convictions. John earned fame with his missionary campaigns in Asia Minor and rose, in 558, to become bishop and one of the miaphysite leaders in Constantinople. John participated in the debates to find a formula of faith that could be accepted by both the miaphysites and the Chalcedonians. He was a victim of the miaphysite persecution starting in 571 and repeatedly imprisoned until his death in about 589. He wrote the Lives of the Eastern Saints, a collection of hagiographic tales, and a large Ecclesiastical History, of which the third part dealing with the events of the 570s and 580s has been preserved." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monk, missionary, church leader, (titular) Bp. of Ephesus, hagiographer, and historian." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3221" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John of Pergamum" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Pergamum" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3222" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John of Seleucia in Syria" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Seleucia in Syria, associated with the monastary of Mar Bzy" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3223" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John of Sura" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Sura, associated with the monastery of Mar Hanina in Sura" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3223" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John of Sura" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John was miaphysite bishop of the town of Sura close to the Euphrates, yet he continually resided in the monastery of Mar Hanina which was located not far from the city. In the schism between Paul of Antioch and Jacob Burd'oyo in the late 570s, he supported Jacob, as is shown in Joh. Eph., EH 4.22." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bp. of Tella (d-Mawzlat) 519–21." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: John of Tella was commemorated as an ascetic and Bishop of Tella (d-Mawzlat) who had to flee his see on account of the aggression of the Chalcedonians. Alongside Jacob Baradaeus , he is remembered for ordaining Miaphysite clergy during this time of persecution." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1808" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Baptist" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Baptist is John the Baptist, son of Elizabeth and cousin of Jesus." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1826" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Evangelist" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "This John refers to John the apostle and John the evangelist, whom early Christians commemorated as the same person." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2688" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Grammarian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A promoter of the theology of the Council of Chalcedon and an opponent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 solitary was a monk of Ṭur ʿAbdin . He might be John, the perfect Nazarite, whom John of Ephesus mentions. He was a monk from Zuqnin near Amida. He was forced to leave his cave on account of Chalcedonian aggression." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2680" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Rhetor" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Rhetor of Alexandria denounced by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2682" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "John the Scribe" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A scribe who committed suicide by throwing himself into a river" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2689" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Jonathan" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter, archimandrite, and stylite who corresponded with Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of John Urtaya; a teacher and firstrate scribe" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk accused by Severus of Antioch of making non-canonical accusations" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The apostle, martyr, and brother of James" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter and archimandrite of the monastery of Bassus and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter of Alexandria mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2691" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk of the monastery of Cyrus whose sin committed unknowingly was forgiven by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2283" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2518" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Emesa" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A chamberlain who copied a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2690" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Bostra" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter accussed of taking property belonging to the church of Tarsus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/834" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian Saba" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An ascetic living in the region of Edessa ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/834" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian Saba" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Julian Saba lived near Edessa and practiced extreme asceticism. He had many disciples, and he fought against the Arians for the case of orthodoxy in Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3228" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian of Alabanda" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alabanda" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/579" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian of Halicarnassus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp., theologian, controversialist." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/579" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian of Halicarnassus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Julian was originally a collaborator of Severus of Antioch and bishop of Halicarnassus. After the accession of Justin I in 518, he was, as an opponent of Chalcedon, forced into exile and went to Egypt together with Severus. There, he clashed with his former mentor since he argued that Christ's body had always been immune to corruption and suffering, a notion fiercely contested by Severus. This conflict ushered in a lasting split among the miaphysites; the followers of Julian, known as Julianists or aphthartists, remained especially strong in Egypt during the remainder of the sixth century." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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, commander of the imperial bodyguard, managed to accede to the imperial throne in the chaotic situation after the death of Anastasius in 518. He was originally from the Illyrian prefecture and many Constantinopolitan aristocrats considered him as an illiterate parvenu. At the start of his reign, he changed the imperial religious policy, restored relations with Rome, declared the council of Chalcedon orthodox, and expelled miaphysite bishops such as Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Emperor from 527 to 565, Justinian exerted a huge influence on the Roman Empire. Famous for the codification of Roman law and the reconquest of large parts of northern Africa and Italy, he was also theologically very active and suppressed the remnants of paganism and Christian minoritarian groups that were labelled as heretics. He supported John of Ephesus in his missionary campaigns in Asia Minor." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2286" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Kavad" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Khosrow was king of the Sasanian Empire and repeatedly waged war with the Roman Empire. He was Zoroastrian and occasionally persecuted the growing Christian minority, as is remembered for instance in Joh. Eph., EH 2.18-22. Yet at the same time, John depicts him, in EH 6.20-21, also as a wise and philosophically interested ruler, an image that is shared by other historians such as Agathias." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A follower of the heresy of Adelphius according to Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2299" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leo" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leo I was one of the most influential bishops of Rome, considerably enlarging the power of the papacy. He acted as leader of his city at a time when the western emperors increasingly became powerless figureheads. Theologically, he is famous as the author of the so-called Tome of Leo, a treatise in which he insisted that Christ be understood in two natures, fully divine and fully human. This view was accepted at the council of Chalcedon in 451, but proved a decisive bone of contention with the supporters of a miaphysite Christology who accused Leo of splitting Christ into two." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2270" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leo I" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leo ruled as emperor in the eastern half of the Roman Empire from 457 to his death in 474." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2287" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leontios" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Agens in rebus during the reign of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A saintly old hermit whom Isaiah claimed as the source of his ordination" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Subject of a dispute over place of ordination between Severus of Antioch and Peter of Apamea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon of Antardus accused of contracting a second marriage after ordination" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1341" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leontius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Leontius of Tripoli was a martyr. He had been a Roman solider. There was a monastery named after him in which Severus of Antioch was baptized." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Leontius (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 102v-103v ." - } - }, { - "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" : "Presbyter of Apamea who wanted to collect interest from a loan to his fellow clergy" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Rome who supported Athanasius against emperor Constantius who sent him into exile" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2511" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Longinus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter under Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2288" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Lucius Verus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Constantinople who was expelled and replaced by Timothy I" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2488" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mammian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Damascus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/608" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mani" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Founder of a religious movement (Manichaeism)." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/48" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mara , metropolitan of Amid" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1866" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mara of Beth Urtaye" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mara of Beth Urtaye is commemorated in the Lives of the Eastern Saints by John of Ephesus .." - } - }, { - "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 is commemorated in Mari the Solitary (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 96v-101v and Add. 14650, f. 182v-186 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2698" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Marcian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Byzantine Emperor who called together the Council of Chalcedon." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2698" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Marcian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "After the death of Theodosius II in 450, the influential generals Aspar and Ardabur brought Marcian, a member of their retinue, to the throne. In order to legitimise the new emperor, a marriage with Theodosius' sister Pulcheria was organised. Marcian convoked the Council of Chalcedon in 451 and ruled until his death in early 457." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/616" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Marcion" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Early Christian thinker, founder of the Marcionites." - } - }, { - "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 ." - } - }, { - "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" : "Daughter of Euphemia" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Sura" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2701" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mark" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter and monk of Cilicia mentioned in letters by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A cleric from Berrhoea and associate of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monastic head from Palestine" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The namesake of Maro, the monastic head of Arʿa Rabtha" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3094" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Maron" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop after whom a monastery was named" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2702" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Maron" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A reader and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Maron is commemorated in Abraham and Maron (text) in the Lives of the Eastern Saints by John of Ephesus." - } - }, { - "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" : "A cleric of Anazarba whose poetry Severus of Antioch denounced as immoral" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Mary and Euphemia (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 40-45 and Add. 14651, f. 70v-81 ." - } - }, { - "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) ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1881" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mary the Mourner" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mary the Mourner is commemorated in Mary the Mourner (text) , a work surviving in at least 2 manuscripts including ms London, British Library, Add. 14650, f. 182r-v ." - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2521" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Matronian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Vir illustris and father of John the Scholastic" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2451" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Maximian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Constantinople following Nestorius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Scholastic whom Severus expresses an interest in ordaining as presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2413" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Maximus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter who sought restoration to his office from Severus of Antioch following his repentence for the sin of fornication" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2291" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Maʿnu" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1919" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Meletius of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Meletius was patriarch of Antioch and presided over the Council of Constantinople in 381." - } - }, { - "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" : "Resident of Tyre who reported to Severus of Antioch a dispute between the readers of Tyre and their bishop Epiphanius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 chamberlain and then deacon who received several letters from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2723" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mitraeus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A man described by Severus of Antioch as a critic of the church" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1934" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monks of Amida" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2501" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Montanus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Founder of Montanism" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Vindex of Anazarba and correspondent of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Meloe who brought charges against archdeacon Callistus on the ground that he had bought his priestly order and status" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The archimandrite of Tagais and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/655" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nestorius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Constantinople from 428 to 431." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/655" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nestorius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Nestorius of Constantinople was a doctor of the Church of the East." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/655" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nestorius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nestorius was dyophysite patriarch of Constantinople and subscribed to controversial Christological positions. He argued that the Virgin Mary should not be called Mother of God, but only Mother of Christ. Some, such as Cyril of Alexandria, interpreted this as a diminution of Christ's divinity. His opponents eventually achieved that Nestorius was condemned and deposed at the council of Ephesus in 431. He was sent into exile to Egypt where he died about 20 years later. In the later miaphysite tradition, he was portrayed as an arch-heretic who had supposedly divided Christ into two distinct beings, the man Jesus and the divine Logos, who had not been with Jesus from birth, but only infused him at a later point." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop ordered by Severus of Antioch to depose clergy ordained by followers of Nestorius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2725" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nisthora" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A hermit whom the messenger of the Emperor Theodosius II visited in order to ask for prayers for the conception of a male heir" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2292" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nona" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2418" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nonnus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk of the monastery of Simeon who was summoned several times to answer various charges and accusations brought against him" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2706" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Nonnus/Naunus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Seleucia in Syria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2726" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Novatus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Rome and a heretic" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/56" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Oecumenius , comes" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2727" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Olympiodorus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Alexandria and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2728" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Origen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Caesarea in Palestine and prolific theologian and biblical commentator" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2473" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Palladius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2294" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paqida" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2281" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Patricius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2453" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Patrick" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter and monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Ephesus who rejected the Council of Chalcedonian impiety" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Emesa who petitioned Cyril to allow the bishops Dorotheus, Eutherius, Himerius, and Helladius to remain in their sees" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Olba in Isauria who, according to Severus of Antioch, abandoned his flock by leaving his see and was eventually deprived" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/72" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul II , Patriarch of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Patr. Pawlos’s name (‘of the house of the black ones’) was rendered in Greek as ‘of the black (ones)’ (Melanos, sing., or Melanōn, plur.)." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/72" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul II , Patriarch of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul, nicknamed the Black, was of Alexandrian origin and lived in Constantinople together with the miaphysite patriarch Theodosius of Alexandria. Theodosius ordained him patriarch of Antioch in 564, but he never was accepted by all the miaphysites in Syria. Paul's position was further weakened in the early 570s, when he temporarily entered into communion with the Chalcedonians. Eventually, his opponents succeeded in ordaining Peter of Callinicum as counter-patriarch. According to Joh. Eph., EH 4.54-57, Paul spent his last years in hiding and his death went largely unnoticed." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3240" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul of Aphrodisias" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Aphrodisias" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3240" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul of Aphrodisias" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul was a miaphysite bishop ordained by Jacob Burd'oyo around 558 and appears in the tritheist debate of the 560s. He was pressured into accepting the Chalcedonian communion in 571 and reordained as bishop of Antioch in Caria. He appears in Joh. Eph., EH 1.14 and 2.42-43." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3239" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul of Arzun" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk at the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1980" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul the Mourner" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul the Mourner is commemorated in Paul the Mourner (text) , a work surviving in at least 4 manuscripts including ms London, British Library, Add. 14647, f. 26v-28v ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1977" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul, patriarch of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Paul, patriarch of Antioch of Antioch was a Miaphysite patriarch of the sixth century whom John of Ephesus commemorates." - } - }, { - "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" : "Bishop of Antioch who was charged with the uncanonical ordination of Evagrius as his successor" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2296" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Pawla" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2731" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Pelagius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk of Seleucia in Syria charged with bringing his Nestorian brother into the monastery" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Apamea and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Peter and Photius (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 127r-v ." - } - }, { - "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" : "Presbyter of Antioch and brother of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2297" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Peter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2733" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Peter" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A correspondent of Severus of Antioch and possibly a presbyter of Alexandria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Scholastic whom Severus expresses an interest in ordaining as presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3243" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Peter" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Tralles" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2735" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Peter I of Alexandria" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria and martyr" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2474" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Peter the Fuller" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Non-Chalcedonian Bishop of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The son of Bosmarios, king of Georgia (Iberia), he was brought up in Constantinople as a political hostage at the court of the Emperor Theodosius II." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "In hagiography: Peter the Iberian was the son of the king of Georgia. He helped Nestorius preach a homily about the saints. He went on a pilgrimage to Jerusalem and became a monk. He became Bishop of Maiuma in Gaza and was exiled to Egypt in 455." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2502" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Phaedimus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Amasia and a holy man" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2414" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Philip" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk from Isauria who was ordained deacon by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter, monk, and recipient of a letter from Severus of Antioch who was involved in controversies over reordination and penance" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Metropolitan bp. of Mabbug (modern Membij/ancient Hierapolis) (485-519), ascetic theologian, christological polemicist, and sponsor of the Philoxenian NT." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Doliche" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2737" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Phocas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A chamberlain and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2738" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Photinus of Sirmium" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Sirmium whose heresy was discussed at the Council of Nicaea" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An archimandrite in Caria and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Photius is commemorated in Peter and Photius (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 127r-v ." - } - }, { - "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" : "A cleric anathematized by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2739" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Poemen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An Egyptian monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 of Smyrna was an early bishop of Smyrna who was martyred as an old man in the second century. His story became a model for passion narratives of Christian martyrs." - } - }, { - "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" : "Presbyter of Chalcis in Syria who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3246" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Probus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A patrician" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2740" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Procla" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A correspondent of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Bishop of Colonia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/688" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Proclus of Constantinople" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Cyzicus and since 434 Patr. of Constantinople." - } - }, { - "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" : "Bishop of Flavius whose clergy accussed him of receiving gifts when performing ordinations" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2471" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Proterius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria elected by the Council of Chalcedon to replace Dioscorus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2285" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Qayuma bar Magartat" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/26" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Rabbula of Edessa" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Edessa (411/2–435/6)." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/26" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Rabbula of Edessa" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Rabbula of Edessa was commemorated as the Bishop of Edessa . He was the son of a rich pagan. As a bishop, he lived an ascetic life, helped the poor, and fought heretics." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2744" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Romanus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rhosus in Cilicia and follower of Julian of Halicarnasus whose ideas were attacked by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2040" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Romanus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Romanus is commemorated in Bassianus, Romanus, and Simeon (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 104v-105v ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2743" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Romanus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An archimandrite in Palestine who founded an Anti-Chalcedonian monastery at Eleutheropolis with the patronage of the Empress Eudocia ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2575" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Romulus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Subject of a letter of Severus of Antioch seeking permission from the bishop of Doliche that he might be able to conduct prayers in Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A magistrian who delivered a letter from Master of the Offices to Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2300" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Rufinus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2555" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sabellius the Libyan" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Libyan heresiarch and proponent of modalism" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2745" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Samuel" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Archimandrite of monastery of lsaac" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3250" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Samuel" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monastic head of the monastery of Samuel" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2709" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Samuel" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter, archimandrite, and stylite who corresponded with Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3251" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Samuel" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Archpresbyter of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3118" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sannus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Deacon whose ordination was called into question over misappropriation of funds." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3651" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Satan" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2746" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Scholasticus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A correspondent of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2301" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Senator" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Augusta and brother of Julian the presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A reader whom Severus of Antioch criticized for causing harm by relating dream visions and prophesies" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2069" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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" : "A count and archiatrus who corresponded with Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A physician and sophist who corresponded with Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Governor of Syria Secunda" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Scholastic whom Severus expresses an interest in ordaining as presbyter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1466" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius was one of the most popular saints of the Orient. He was a Roman soldier martyred shortly after his friend Bacchus since he refused to sacrifice to the Roman gods. Sergius was decapitated at Resafa on the Euphrates ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1466" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius, often venerated together with Bacchus, was one of the most popular saints in Syria. According to legend, he was a Roman officer who suffered martyrdom in Rusafa close to the Euphrates in the early 4th century. From the 5th century onwards, his shrine at Rusafa-Sergiopolis became a major cult centre for the Arab tribes, as recorded for instance in Joh. Eph., EH 6.4." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2749" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "An endoxatatos and the father of Count Anastasius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Simeon and Sergius (text) which features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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" : "A bishop and syncellus to James Burdʿana" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3257" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A syncellus and notary of Amida; sent into exile in Petra" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Cyrrhus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3255" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius I" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2408" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius II" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Cyrrhus who asserted that Nestorius' theology was consistent with the Council of Chalcedon" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3256" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius II" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon whom Severus of Antioch anathemizes for sleeping with his father’s wife or concubine" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/71" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius bar Karyo" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1463" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius of Tella" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Sergius of Tella was the successor of Jacob Baradaeus . He accompanied his teacher to Constantinople where he was received by the Empress Theodora ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/1463" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius of Tella" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sergius was a close collaborator of the miaphysite bishop Jacob Burd'oyo. He resided in Constantinople for a large part of his life and was eventually ordained miaphysite bishop of Antioch. However, it seems that he remained in Constantinople where he died around 560. During the last years of his life, he became an adherent of the tritheist doctrine." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2534" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Severus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Tripolis" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2302" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Severus Alexander" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/51" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Severus of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Patr. of Antioch , theologian, and prolific Greek author." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/51" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Severus of Antioch" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "One of the most influential miaphysite theologians, Severus was originally born a pagan. After his conversion in c.490, Severus became actively involved in the fight against the council of Chalcedon and gained much importance during the reign of Anastasius. He became patriarch of Antioch in 512, but was forced to leave his see and go into exile to Egypt after the accession of Justin I in 518. In 535, Justinian invited him to Constantinople for religious discussions to overcome the divide between pro- and anti-Chalcedonians. However, these plans failed and Severus died in his Egyptian exile in 538." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2303" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Shaʿad" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2752" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Silvanus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A cleric ordained by Chalcedonians who sought to be received by non-Chalcedonians" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2304" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Silwana" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Chalcis in Syria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2753" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Archimandrite of the great monastery and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2093" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon is commemorated in Bassianus, Romanus, and Simeon (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 104v-105v ." - } - }, { - "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 is commemorated in Simeon and Sergius (text) which features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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" : "Archimandrite of Teleda and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Polemical writer and bp." - } - }, { - "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" : "In hagiography: Shemʿōn features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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 features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2098" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon the Scribe" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon the Scribe features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/744" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon the Stylite" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Saint. Born in the village of Sisa near Nicopolis, Shemʿun was the child of Christian parents." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/744" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Simeon the Stylite" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Simeon the Stylite was a shepherd who became a monk. He lived first in a cistern, but then later he built a column on which he lived at Telanesios. His pillar and extreme asceticism attracted pilgrims and converts." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A scriniarius and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2509" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Siricius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rome who called for a more careful investigation of the dispute between Flavian I and Evagrius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/849" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Socrates Scholasticus" - } - }, { - "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" : "Bishop of Seleucia in Isauria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2306" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Sophronios of Tella" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "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" : "Bishop of Caesarea in Cappadocia" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2577" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Anasartha who was ordained by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter of Antioch under Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2758" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A grammarian and correspondent of Thecla the countess" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2761" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Rome who determined that it was not necessary to re-baptize those who had been baptized by heretics" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2760" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Apamea and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2759" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Archimandrite of Tagais" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2533" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Tripolis" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tripolis and recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3010" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Stephen is commemorated in Thomas, Stephen, and Zota (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 45-51 and Add. 14650, f. 167v-172v ." - } - }, { - "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" : "Deacon of Antardus and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Seleucia in lsauria who opposed local non-Chalcedonians" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon summoned by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Susan (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14650, f. 178-182 and Rich. 7190, f. 336v-337v and Add. 14651, f. 94v-103v and Add. 14730, f. 121v-125 ." - } - }, { - "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" : "An Isaurian bishop under the authority of Solon, Bishop of Seleucia in Isauria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3263" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Symy" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Monastic head of the monastery of John Urtaya" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A countess and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2416" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thecla" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "The first female martyr" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Raised as a child acrobat in the circus, Theodora married the future emperor Justinian I in 523." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Before her rise to the throne as the wife of emperor Justinian, Theodora was had been an actress, a profession which gave rise to rumours that she had been a prostitute. John of Ephesus remembers Theodora fondly because she protected a large number of miaphysite monks and clerics in Constantinople until her death in 548." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2712" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk of Byzantium and brother-in-law of prefects who left his family to become a monk and then wanted to return to the world" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A tribune and notary who corresponded with Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Presbyter and archimandrite of the monastery of Romanus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Olba in Isauria and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Elijah and Theodore (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 83-86 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2765" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter and archimandrite who corresponded with Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Presbyter and archimandrite of the Monastery of Theodore" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon and monk who corresponded with Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Tyana and rival of Helladius, Bishop of Caesaria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2535" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Governor of Phoenice and later Vindex of Tripoli" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 Castrensus is commemorated in Theodore Castrensis (text) in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2715" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore [here Theodosios]" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Antinoe and opponent of the Council of Chalcedon" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Hirtha" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/780" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore of Mopsuestia" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp. of Mopsuestia, biblical commentator, author of theological works and homilies." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/780" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodore of Mopsuestia" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "In hagiography: Theodore of Mopsuestia was a Greek doctor of the Church of the East." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/781" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodoret of Cyrrhus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bp., biblical exegete, church historian, hagiographer, and defender of Antiochene Christology against Cyril of Alexandria." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2714" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodosius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop and recipient of a letter from Isidore of Pelusium" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter of Antioch who Severus of Antioch sent to investigate accusations against the bishop Procopius" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Patr. of Alexandria ; leader of the Egyptian and Syrian anti-Chalcedonians." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Theodore, of Syrian origin, was abbot of the miaphysite monastery of Rhamnis in Egypt and consecrated patriarch of Alexandria in 575. However, the majority of the miaphysite clergy did not accept him and elected Peter of Alexandria instead, as is narrated in Joh. Eph., EH 4.10-13." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2271" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theodosius I" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Theodosius II is an emperor of the Roman Empire commemorated in Cyril of Alexandria and Theodosius II (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 17134, f. 50v and add. 18816, f. 70r-v ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Theodosius II ruled the eastern half of the Roman Empire from 408 to 450. His reign saw the start of the Christological controversy and he convened both the Council of Ephesus of 431 and the so-called 'robber synod' of 449. Joh. Eph., EH 5.14, remembers him as the last purple-born prince (his father was the emperor Arcadius) before the birth of Maurice's son Theodosius in 583." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Joppa in Palestine, called the Re-anointer by Severus of Antioch because he unlawfully re-anointed converts from Nestorianism" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2768" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theognostus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2769" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Theophanes" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A scholastic and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Alexandria" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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) ." - } - }, { - "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" : "Presbyter and chief physician in Tarsus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Dara and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2123" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas the apostle is commemorated as the missionary to India India, and Christians in India call themselves Thomas Christians after his memory. There was cult to Thomas in the city of Edessa ." - } - }, { - "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" : "A presbyter of Antioch and recipient of a letter from Peter, Bishop of Apamea." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is commemorated in Thomas, Stephen, and Zota (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 45-51 and Add. 14650, f. 167v-172v ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2772" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A presbyter of Bostra whose ordination came into question when he was castrated for medical reasons" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A deacon charged with ensuring proper execution of a ruling of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2587" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas of Damascus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Damascus driven from his see after the accession of Justin I" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/57" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas of Germanicea" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Thomas was a miaphysite Bishop of Marʿash (ancient Germanicea) . He was in correspondence with Severus of Antioch and was banished to Egypt ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "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" : "Duke and correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Presbyter, monk at the monastery of Maiuma, and freedman" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2774" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Timothy I" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop of Alexandria and participant in the Council of Constantinople" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/790" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Timothy I , catholicos" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Cath. of the Ch. of E. Timotheos was born in the village of Ḥazza (near Arbela in Iraq )." - } - }, { - "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" : "Miaphysite Patr. of Alexandria 457-60, 475-7." - } - }, { - "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" : "Bishop of Alexandria and a non-Chalcedonian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Timothy was anti-Chalcedonian patriarch of Alexandria from 517 to 535. During his tenure, he welcomed Severus and other miaphysite clerics from Syria who had been forced to leave their sees." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 ." - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2775" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Uranius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A corresondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A grammarian and a correspondent of Severus of Antioch." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2778" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Urbicius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A monk who received a letter from Basil of Caesarea urging him to refrain from taking communion with heretics" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2309" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Valens" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2310" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Valentinian I" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2779" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Valentinus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Heresiarch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "An archimandritess and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Presbyter of Antioch under Severus of Antioch and xenodochus" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Bishop of Philadelphia in Isauria and a correspondent of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "The sister of Justinian and mother of Justin II" - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "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" : "Vigilantia was sister of the emperor Justinian and the mother of Justin II. She was still alive when her son acceded to the imperial throne in late 565." - }, - "sex" : { - "type" : "literal", - "value" : "women" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2311" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Vitalian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2716" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Vivian" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Consul and father of Paul the Patrician" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2312" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Vologesh" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2313" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Yahab bar Shemesh" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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 is a monk who features in John of Ephesus' Lives of the Eastern Saints." - } - }, { - "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" : "A monk" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2718" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zacharias" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "A deacon and later presbyter admitted to the presbyterate by Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3788" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zacharias" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Recipient of a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2717" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zacharias of Pelusium" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Recipient of a letter from Severus of Antioch about the adornment of church buildings" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Greek author and bp." - } - }, { - "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" : "A presbyter of Chalcis in Syria who received a letter from Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Zeno ruled the eastern half of the Roman Empire from 474 to his death in 491. His reign was threatened several times by usurpers." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "A presbyter who delivered a letter from the presbyters John and John to Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2719" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zenobius" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Recipient of a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "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" : "Zaʿūra was an anchorite whose life was memorialized by John of Ephesus . He was a stylite saint who famously replaced his teacher, another stylite, when the former was ready to retire. Zaʿūra also travelled to Constantinople in order to advocate for the cause of the Miaphysites before the Empress Theodora ." - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3779" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zoninus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Mentioned in a letter of Severus of Antioch" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/2720" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zosimus" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Bishop whose death Severus of Antioch mentions in a letter" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3011" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zota" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Zota is commemorated in Thomas, Stephen, and Zota (text) , a work surviving in at least 3 manuscripts including mss London, British Library, Add. 14647, f. 45-51 and Add. 14650, f. 167v-172v ." - } - }, { - "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" : "A presbyter and son of Abraham the Priest" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/3260" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Šnq" - }, - "description" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "Satrap of Syria and Armenia; father of Thomas the Armenian" - }, - "sex" : { - "type" : "literal", - "value" : "men" - } - }, { - "person" : { - "type" : "uri", - "value" : "http://syriaca.org/person/16" - }, - "label_en" : { - "xml:lang" : "en", - "type" : "literal", - "value" : "ʿAbshmayya" - } - } ] - } -} diff --git a/dev-neptune-queries/test-browse.html b/dev-neptune-queries/test-browse.html deleted file mode 100644 index 358423160..000000000 --- a/dev-neptune-queries/test-browse.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - SPARQL Dropdown Test - - - -

Browse SPARQL Results

- - - - - - - - - -
Results
- -
- - - - diff --git a/mode.js b/mode.js index 4e71bac1c..c04295e74 100644 --- a/mode.js +++ b/mode.js @@ -65,6 +65,12 @@ export function boot({ registry, defaultType = 'person' } = {}) { togglePanels(type); + function clearUserFacetError() { + const container = document.getElementById("source-error-container"); + if (!container) return; + container.innerHTML = ""; + } + function showUserFacetError(msg) { console.warn("Showing user facet error:", msg); const container = document.getElementById("source-error-container"); @@ -90,7 +96,7 @@ export function boot({ registry, defaultType = 'person' } = {}) { showUserFacetError(rows.message); return; // STOP — do not call mode.render } - + clearUserFacetError(); mode.render(rows, state); } catch (err) { console.error('Search failed:', err); diff --git a/person/person.json b/person/person.json index da91c6fbd..31acce41a 100644 --- a/person/person.json +++ b/person/person.json @@ -8594,26 +8594,6 @@ "value": "Bishop of Antioch" } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/2530" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Flavian II of Antioch" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܦܠܒܝܢܘܣ" - }, - "description": { - "type": "literal", - "value": "Bishop of Antioch Flavian represented the see of Antioch as ambassador in Constantinople before being made patriarch of Antioch by Anastasius in 498. He attempted to follow a middle course between adherents and opponents of Chalcedon until he lost imperial support in 512 and was replaced by the miaphysite champion Severus. Exiled to Petra, Flavian died in 518." - } - }, { "person": { "type": "uri", @@ -8635,25 +8615,41 @@ } }, { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/2654" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Gaian" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܓܐܝܐܢܘܣ" - }, - "description": { - "type": "literal", - "value": "Bishop of Alexandria opposed by Severus of Antioch Gaianus was an Egyptian cleric and follower of the doctrine of Julian of Halicarnassus concerning the incorruptibility of Christ (Aphthartism). He was supported by a considerable part of the population of Alexandria after the death of Timothy IV in early 535; the new patriarch Theodosius was ousted and Gaianus acceded to the patriarchal throne for three months before a military expedition reinstalled Theodosius. Gaianus was sent into exile to the west, probably to Carthage." - } + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1167" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Bassus" }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "In hagiography: Bassus and his twin sister Suzanna were twin children of a Zoroastrian governor. They were informed about Christianity by a Christian slave. They were baptized by an ascetic named Longinus . They were killed by their father. A martyr named Stephen is also commemorated with them. At least one monastery commemorating Mar Bassus was founded near Apamea ." + } + }, { + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + }, + "label_syr" : { + "xml:lang" : "syr", + "type" : "literal", + "value" : "ܐܣܛܦܢܘܣ" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen the Protomartyr" + }, + "description" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Stephen is commemorated in the Syriac tradition as the first of Christian martyrs." + } + }, { "person": { "type": "uri", @@ -10399,26 +10395,6 @@ "value": "Bishop of Claudiupolis who attempted to persuade Severus to accept Chalcedon as a condemnation of Nestorius" } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/74" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "John of Ephesus" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܝܘܚܢܢ" - }, - "description": { - "type": "literal", - "value": "Monk, missionary, church leader, (titular) Bp. of Ephesus, hagiographer, and historian. Born in 507 in Roman Mesopotamia, John became a monk already in his childhood. Since the late 530s, he mainly lived in Constantinople where he enjoyed good relations with Justinian despite his miaphysite convictions. John earned fame with his missionary campaigns in Asia Minor and rose, in 558, to become bishop and one of the miaphysite leaders in Constantinople. John participated in the debates to find a formula of faith that could be accepted by both the miaphysites and the Chalcedonians. He was a victim of the miaphysite persecution starting in 571 and repeatedly imprisoned until his death in about 589. He wrote the Lives of the Eastern Saints, a collection of hagiographic tales, and a large Ecclesiastical History, of which the third part dealing with the events of the 570s and 580s has been preserved." - } - }, { "person": { "type": "uri", @@ -10934,26 +10910,6 @@ "value": "Bishop of Alabanda" } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/579" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Julian of Halicarnassus" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܝܘܠܝܢܐ" - }, - "description": { - "type": "literal", - "value": "Bp., theologian, controversialist. Julian was originally a collaborator of Severus of Antioch and bishop of Halicarnassus. After the accession of Justin I in 518, he was, as an opponent of Chalcedon, forced into exile and went to Egypt together with Severus. There, he clashed with his former mentor since he argued that Christ's body had always been immune to corruption and suffering, a notion fiercely contested by Severus. This conflict ushered in a lasting split among the miaphysites; the followers of Julian, known as Julianists or aphthartists, remained especially strong in Egypt during the remainder of the sixth century." - } - }, { "person": { "type": "uri", @@ -12599,26 +12555,6 @@ "value": "Patr. Pawlos’s name (‘of the house of the black ones’) was rendered in Greek as ‘of the black (ones)’ (Melanos, sing., or Melanōn, plur.). Paul, nicknamed the Black, was of Alexandrian origin and lived in Constantinople together with the miaphysite patriarch Theodosius of Alexandria. Theodosius ordained him patriarch of Antioch in 564, but he never was accepted by all the miaphysites in Syria. Paul's position was further weakened in the early 570s, when he temporarily entered into communion with the Chalcedonians. Eventually, his opponents succeeded in ordaining Peter of Callinicum as counter-patriarch. According to Joh. Eph., EH 4.54-57, Paul spent his last years in hiding and his death went largely unnoticed." } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/72" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Paul II , Patriarch of Antioch" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܦܘܠܘܣ" - }, - "description": { - "type": "literal", - "value": "Patr. Pawlos’s name (‘of the house of the black ones’) was rendered in Greek as ‘of the black (ones)’ (Melanos, sing., or Melanōn, plur.). Paul, nicknamed the Black, was of Alexandrian origin and lived in Constantinople together with the miaphysite patriarch Theodosius of Alexandria. Theodosius ordained him patriarch of Antioch in 564, but he never was accepted by all the miaphysites in Syria. Paul's position was further weakened in the early 570s, when he temporarily entered into communion with the Chalcedonians. Eventually, his opponents succeeded in ordaining Peter of Callinicum as counter-patriarch. According to Joh. Eph., EH 4.54-57, Paul spent his last years in hiding and his death went largely unnoticed." - } - }, { "person": { "type": "uri", @@ -15429,26 +15365,6 @@ "value": "Patr. of Alexandria ; leader of the Egyptian and Syrian anti-Chalcedonians. Theodore, of Syrian origin, was abbot of the miaphysite monastery of Rhamnis in Egypt and consecrated patriarch of Alexandria in 575. However, the majority of the miaphysite clergy did not accept him and elected Peter of Alexandria instead, as is narrated in Joh. Eph., EH 4.10-13." } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/784" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Theodosius , patriarch of Alexandria" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܬܐܕܘܪܘܣ" - }, - "description": { - "type": "literal", - "value": "Patr. of Alexandria ; leader of the Egyptian and Syrian anti-Chalcedonians. Theodore, of Syrian origin, was abbot of the miaphysite monastery of Rhamnis in Egypt and consecrated patriarch of Alexandria in 575. However, the majority of the miaphysite clergy did not accept him and elected Peter of Alexandria instead, as is narrated in Joh. Eph., EH 4.10-13." - } - }, { "person": { "type": "uri", @@ -15969,26 +15885,6 @@ "value": "Bishop of Alexandria and a non-Chalcedonian Timothy was anti-Chalcedonian patriarch of Alexandria from 517 to 535. During his tenure, he welcomed Severus and other miaphysite clerics from Syria who had been forced to leave their sees." } }, - { - "person": { - "type": "uri", - "value": "http://syriaca.org/person/2440" - }, - "label_en": { - "xml:lang": "en", - "type": "literal", - "value": "Timothy IV" - }, - "label_syr": { - "xml:lang": "syr", - "type": "literal", - "value": "ܛܝܡܘܬܐܘܣ ܪܝܫ ܐܦ̈ܝܣܩܘܦܐ" - }, - "description": { - "type": "literal", - "value": "Bishop of Alexandria and a non-Chalcedonian Timothy was anti-Chalcedonian patriarch of Alexandria from 517 to 535. During his tenure, he welcomed Severus and other miaphysite clerics from Syria who had been forced to leave their sees." - } - }, { "person": { "type": "uri", @@ -16638,7 +16534,18 @@ "type": "literal", "value": "Qashish is commemorated in Qashish (text) , a work surviving in at least 3 manuscripts including ms London, British Library, Add. 14647, f. 120-121v ." } + }, + { + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3703" + }, + "label_en" : { + "xml:lang" : "en", + "type" : "literal", + "value" : "Anonymous 3703" } + } ] } }