API
Last updated
Last updated
Deletes an apikey for current user. Only available in SERVER mode.
user identifier
DELETE /api/key/{userId} HTTP/1.1
Host:
Accept: */*
when key has been deleted
No content
Get the private key for an existing user. Only available in SERVER mode.
user identifier
GET /api/key/{userId} HTTP/1.1
Host:
Accept: */*
returns the hashed key JSON
{
"hashedKey": "c3e7766f7605659f2b97f2a6f5bcf34611997fc31173931eefcea91df1b465ffe35c2b9b4b91e8bbe2eec3730ce2a74a"
}
Preflight for key management
user identifier
OPTIONS /api/key/{userId} HTTP/1.1
Host:
Accept: */*
returns OPTIONS, GET, PUT and DELETE
No content
Creates a new private key and saves its SHA384 hash into database for current user. Only available in SERVER mode.
user identifier
PUT /api/key/{userId} HTTP/1.1
Host:
Accept: */*
returns the api key JSON
{
"apiKey": "SrcasvUmaAD6NsZ3+VmUkFFWVfRggIRNmWR5aHx7Kfc="
}
Deletes batch searches and results for the current user.
DELETE /api/batch/search HTTP/1.1
Host:
Accept: */*
no content: idempotent
No content
Retrieves the list of batch searches
'freetext' search filter. Empty string or '' to select all. Default is ''
specifies field on query filter ('all','author'...). Default is 'all'
list of selected queries in the batch search (to invert selection put 'queriesExcluded' parameter to true)
Associated with 'queries', if true it excludes the listed queries from the results
filters by contentTypes
filters by projects. Empty array corresponds to no projects
filters by date range timestamps with [dateStart, dateEnd]
filters by task status (RUNNING, QUEUED, DONE, FAILED)
filters by published state (0: private to the user, 1: public on the platform)
boolean, if true it includes list of queries
if not provided default is 100
if not provided it starts from 0
GET /api/batch/search HTTP/1.1
Host:
Accept: */*
default response
{
"items": [],
"pagination": {
"count": 1,
"from": 1,
"size": 1,
"total": 1
}
}
Preflight request
OPTIONS /api/batch/search HTTP/1.1
Host:
Accept: */*
returns 200 with DELETE
No content
Retrieves the results of a batch search as an attached CSV file.
GET /api/batch/search/result/csv/{batchid} HTTP/1.1
Host:
Accept: */*
returns the results of the batch search as CSV attached file.
No content
Deletes a batch search and its results with the given id. It won't delete running batch searches, because results would be orphans.
DELETE /api/batch/search/{batchid} HTTP/1.1
Host:
Accept: */*
Returns 204 (No Content) : idempotent
No content
Retrieves the batch search with the given id. The query param "withQueries" accepts a boolean value.When "withQueries" is set to false, the list of queries is empty and nbQueries contains the number of queries.
GET /api/batch/search/{batchid} HTTP/1.1
Host:
Accept: */*
{
"uuid": "text",
"published": true,
"name": "text",
"description": "text",
"user": null,
"state": "QUEUED",
"date": "2025-04-21T15:33:55.841Z",
"nbQueries": 1,
"nbResults": 1,
"errorMessage": "text",
"errorQuery": "text",
"queries": {
"ANY_ADDITIONAL_PROPERTY": 1
},
"fileTypes": [
"text"
],
"paths": [
"text"
],
"fuzziness": 1,
"phraseMatches": true,
"queryTemplate": {},
"projects": [
"text"
]
}
Preflight request
OPTIONS /api/batch/search/{batchid} HTTP/1.1
Host:
Accept: */*
returns 200 with DELETE
No content
Retrieves the batch search queries with the given batch id and returns a list of strings UTF-8 encoded
identifier of the batch search
if not provided it starts from 0
if not provided all queries are returned from the "from" parameter
if set to csv, it answers with content-disposition attachment (file downloading)
if provided it will filter the queries accordingly
field name to order by asc, "query_number" by default (if it does not exist it will return a 500 error)
number of maximum results for each returned query (-1 means no maxResults)
GET /api/batch/search/{batchid}/queries HTTP/1.1
Host:
Accept: */*
the batch search queries map [(query, nbResults), ...]
No content
Retrieves the list of starred document for all projects for the current user.
GET /api/documents/starred HTTP/1.1
Host:
Accept: */*
default response
[]
Retrieves the list of users who recommended a document with the total count of recommended documents for the given project id
GET /api/users/recommendations?project={project} HTTP/1.1
Host:
Accept: */*
default response
{
"aggregates": [],
"totalCount": 1
}
Gets all users who recommended a document with the count of all recommended documents for project and documents ids.
comma separated document ids
GET /api/users/recommendationsby?project={project}&docIds={coma_separated_docIds} HTTP/1.1
Host:
Accept: */*
default response
{
"aggregates": [],
"totalCount": 1
}
Retrieves the list of tagged documents for a given project id filtered by a given string of coma-separated list of tags.
the project id
comma separated tags
GET /api/{projects}/documents/tagged/{coma_separated_tags} HTTP/1.1
Host:
Accept: */*
default response
[
"text"
]
Retrieves the set of recommended documents for the given project id and a list of users
comma separated users
GET /api/{project}/documents/recommendations?userids={coma_separated_users} HTTP/1.1
Host:
Accept: */*
default response
[
"text"
]
Retrieves the list of starred documents for a given project.
the project id
GET /api/{project}/documents/starred HTTP/1.1
Host:
Accept: */*
default response
[
"text"
]
Gets tags by document id
the project id
document id
GET /api/{project}/documents/tags/{docId} HTTP/1.1
Host:
Accept: */*
default response
[]
Preflight request for document tagging
the project id
document id
OPTIONS /api/{project}/documents/tags/{docId} HTTP/1.1
Host:
Accept: */*
returns 200 with PUT
No content
Preflight request for document untagging
the project id
document id
OPTIONS /api/{project}/documents/untag/{docId} HTTP/1.1
Host:
Accept: */*
returns 200 with PUT
No content
Gets all user's document recommendations.
if not provided it starts from 0
if not provided, the 50 first record from the "from" parameter
if not provided, return every recommendations for every project
GET /api/document-user-recommendation/ HTTP/1.1
Host:
Accept: */*
{
"error": true,
"success": true
}
Preflight options request
OPTIONS /api/document-user-recommendation/ HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS and GET
No content
Gets the extension set in JSON. If a request parameter "filter" is provided, the regular expression will be applied to the list.
See https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html for pattern syntax.
regular expression to apply
GET /api/extensions HTTP/1.1
Host:
Accept: */*
returns the extensions set
[]
Preflight request
OPTIONS /api/extensions/install HTTP/1.1
Host:
Accept: */*
returns OPTIONS and PUT
No content
Download (if necessary) and install extension specified by its id or url.Request parameter id
or url
must be present.
id of the extension
url of the extension
PUT /api/extensions/install HTTP/1.1
Host:
Accept: */*
No content
Preflight request
OPTIONS /api/extensions/uninstall HTTP/1.1
Host:
Accept: */*
returns OPTIONS and DELETE
No content
Uninstall extension specified by its id.
id of the extension to uninstall
DELETE /api/extensions/uninstall?id={extensionId} HTTP/1.1
Host:
Accept: */*
returns 204 if the extension is uninstalled (idempotent)
No content
Get the FtM document from its project and id (content hash)
project identifier
document identifier
GET /api/ftm/{project}/{docId} HTTP/1.1
Host:
Accept: */*
{
"name": "text",
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"address": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"country": "text",
"date": "text",
"extension": "text",
"description": "text",
"bodyText": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"generator": "text",
"title": "text",
"notes": "text",
"mimeType": "text",
"author": "text",
"publisher": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": {
"parent": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": {
"parent": {
"parent": "[Circular Reference]",
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"title": "text",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": {
"full": "text",
"city": "text",
"street": "text",
"postOfficeBox": "text",
"street2": "text",
"postalCode": "text",
"latitude": 1,
"longitude": 1,
"osmId": "text",
"googlePlaceId": "text",
"state": "text",
"country": "text",
"region": "text",
"remarks": "text",
"name": "text",
"address": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": {
"parent": "[Circular Reference]",
"fileName": "text",
"language": "text",
"encoding": "text",
"date": "text",
"extension": "text",
"bodyText": "text",
"generator": "text",
"title": "text",
"mimeType": "text",
"author": "text",
"contentHash": "text",
"fileSize": 1,
"processingStatus": "text",
"translatedLanguage": "text",
"translatedText": "text",
"crawler": "text",
"messageId": "text",
"authoredAt": "text",
"publishedAt": "text",
"ancestors": "[Circular Reference]",
"processingError": "text",
"processingAgent": "text",
"processedAt": "text",
"name": "text",
"address": "text",
"country": "text",
"description": "text",
"alias": "text",
"summary": "text",
"sourceUrl": "text",
"notes": "text",
"publisher": "text",
"previousName": "text",
"weakAlias": "text",
"publisherUrl": "text",
"alephUrl": "text",
"wikipediaUrl": "text",
"wikidataId": "text",
"keywords": "text",
"topics": "text",
"addressEntity": "[Circular Reference]",
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text"
},
"program": "text",
"proof": "[Circular Reference]",
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
},
"indexText": "text",
"createdAt": "text",
"modifiedAt": "text",
"retrievedAt": "text",
"detectedLanguage": "text",
"detectedCountry": "text",
"namesMentioned": "text",
"peopleMentioned": "text",
"companiesMentioned": "text",
"ibanMentioned": "text",
"ipMentioned": "text",
"locationMentioned": "text",
"phoneMentioned": "text",
"emailMentioned": "text"
}
Search GET request to Elasticsearch. As it is a GET method, all paths are accepted.
if a body is provided, the body will be sent to ES as source=urlencoded(body)&source_content_type=application%2FjsonIn that case, request parameters are not taken into account.
elasticsearch path
GET /api/index/search/{path} HTTP/1.1
Host:
Accept: */*
No content
Head request useful for JavaScript API (for example to test if an index exists)
HEAD /api/index/search/{path} HTTP/1.1
Host:
Accept: */*
No content
Preflight for index creation.
OPTIONS /api/index/{index} HTTP/1.1
Host:
Accept: */*
No content
Create the index for the current user if it doesn't exist.
index to create
PUT /api/index/{index} HTTP/1.1
Host:
Accept: */*
No content
Preflight request for hide endpoint
OPTIONS /api/{project}/namedEntities/hide/{mentionNorm} HTTP/1.1
Host:
Accept: */*
returns PUT
No content
Hide all named entities with the given normalized mention
current project
normalized mention
PUT /api/{project}/namedEntities/hide/{mentionNorm} HTTP/1.1
Host:
Accept: */*
returns 200 OK
No content
When datashare is launched in NER mode (without index) it exposes a name finding HTTP API.
The text is sent with the HTTP body.
pipeline to use
text to analyze in the request body
POST /api/ner/findNames/{pipeline} HTTP/1.1
Host:
Accept: */*
returns the list of NamedEntities annotations
[]
Gets the list of registered pipelines.
GET /api/ner/pipelines HTTP/1.1
Host:
Accept: */*
returns the pipeline set
[
"TEST"
]
Gets the list of notes for a project.
the project id
GET /api/{project}/notes HTTP/1.1
Host:
Accept: */*
if the user is not granted for the project
No content
Get the JSON or YAML OpenAPI v3 contract specification
format of openapi description. Possible values are:
GET /api/openapi?format={format} HTTP/1.1
Host:
Accept: */*
returns the JSON or YAML file
No content
Gets the plugins set in JSON.
If a request parameter "filter" is provided, the regular expression will be applied to the list.
See Pattern for pattern syntax.
regular expression to apply
GET /api/plugins HTTP/1.1
Host:
Accept: */*
returns the plugins set
[]
Preflight request
OPTIONS /api/plugins/install HTTP/1.1
Host:
Accept: */*
returns OPTIONS and PUT
No content
Download (if necessary) and install plugin specified by its id or url.Request parameter id
or url
must be present.
id of the plugin
url of the plugin
PUT /api/plugins/install HTTP/1.1
Host:
Accept: */*
No content
Preflight request
OPTIONS /api/plugins/uninstall HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS and DELETE
No content
Uninstall plugin specified by its id.
DELETE /api/plugins/uninstall?id={pluginId} HTTP/1.1
Host:
Accept: */*
returns 204 if the plugin is uninstalled (idempotent)
No content
Deletes all user's projects from database and elasticsearch index.
DELETE /api/project/ HTTP/1.1
Host:
Accept: */*
if projects are deleted
No content
Preflight option request
OPTIONS /api/project/ HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS, POST, GET and DELETE
No content
Returns 200 if the project is allowed with this network route : in Datashare database there is the project table that can specify an IP mask that is allowed per project. If the client IP is not in the range, then the file download will be forbidden. In that project table there is a field called allow_from_mask
that can have a mask with IP and star wildcard.
Ex : 192.168.*.*
will match all subnetwork 192.168.0.0
IP's and only users with an IP in.
GET /api/project/isDownloadAllowed/{id} HTTP/1.1
Host:
Accept: */*
No content
Deletes the project from database and elasticsearch index.
DELETE /api/project/{id} HTTP/1.1
Host:
Accept: */*
No content
Gets the project information for the given id
GET /api/project/{id} HTTP/1.1
Host:
Accept: */*
if the project is not found in database
No content
Preflight project resource option request
OPTIONS /api/project/{id} HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS, PUT and DELETE
No content
Gets the public (i.e. without user's information) datashare settings parameters.
These parameters are used for the client app for the init process.
The endpoint is removing all fields that contain Address or Secret or Url or Key
GET /settings HTTP/1.1
Host:
Accept: */*
returns the list of public settings
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
Gets the versions (front/back/docker) of datashare.
GET /version HTTP/1.1
Host:
Accept: */*
returns the list of versions of datashare
{
"ANY_ADDITIONAL_PROPERTY": "text"
}
Retrieve the status of databus connection, database connection and index.
if provided in the URL it will return the status in openmetrics format
GET /api/status HTTP/1.1
Host:
Accept: */*
{
"error": true,
"success": true
}
Gets all the user tasks.
Filters can be added with name=value
. For example if name=foo
is given in the request url query,
the tasks containing the term "foo" are going to be returned. It can contain also dotted keys for nested properties matching.
For example if args.dataDir=bar
is provided, tasks with an argument "dataDir" containing "bar" are going to be selected.
Pagination/order parameters can be added:
as an example: pattern contained in the task name
GET /api/task/all HTTP/1.1
Host:
Accept: */*
returns the list of tasks
[]
Preflight request for batch download.
OPTIONS /api/task/batchDownload HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS and POST
No content
Preflight request
OPTIONS /api/task/batchSearch/copy/{sourcebatchid} HTTP/1.1
Host:
Accept: */*
returns POST
{
"error": true,
"success": true
}
Cleans all DONE tasks.
POST /api/task/clean HTTP/1.1
Host:
Accept: */*
returns 200 and the list of removed tasks
[]
Cleans a specific task.
name of the task to delete
DELETE /api/task/clean/{taskName} HTTP/1.1
Host:
Accept: */*
No content
Preflight request for task cleaning.
OPTIONS /api/task/clean/{taskName} HTTP/1.1
Host:
Accept: */*
returns OPTIONS and DELETE
No content
Cancels the task with the given name.
name of the task to cancel
PUT /api/task/stop/{taskId} HTTP/1.1
Host:
Accept: */*
returns 200 with the cancellation status (true/false)
true
Preflight request to stop tasks.
OPTIONS /api/task/stop/{taskName} HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS and PUT
No content
Preflight request to stop all tasks.
OPTIONS /api/task/stopAll HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS and PUT
No content
Cancels the running tasks. It returns a map with task name/stop statuses.
If the status is false, it means that some threads have not been stopped.
PUT /api/task/stopAll HTTP/1.1
Host:
Accept: */*
returns 200 and the tasks stop result map
{
"ANY_ADDITIONAL_PROPERTY": true
}
Gets one task with its id.
task id
GET /api/task/{id} HTTP/1.1
Host:
Accept: */*
returns the task from its id
{
"id": "text",
"name": "text",
"state": "CREATED",
"progress": 1,
"createdAt": "2025-04-21T15:33:55.841Z",
"retriesLeft": 1,
"completedAt": "2025-04-21T15:33:55.841Z",
"args": {
"ANY_ADDITIONAL_PROPERTY": {}
},
"result": {
"value": {}
},
"error": {
"message": "text",
"@type": "text"
},
"latch": {
"taskState": "CREATED"
}
}
Gets task result with its id
task id
GET /api/task/{id}/result HTTP/1.1
Host:
Accept: */*
No content
Lists all files and directory for the given path. This endpoint returns a JSON using the same specification than the tree
command on UNIX. It is roughly the equivalent of:
tree -L 1 -spJ --noreport /home/datashare/data
directory path in the tree
GET /api/tree/{dirPath} HTTP/1.1
Host:
Accept: */*
returns the list of files and directory
{
"contents": [],
"type": "directory",
"prot": "text",
"name": "text",
"size": 1
}
Gets the user's session information.
GET /api/users/me HTTP/1.1
Host:
Accept: */*
returns the user map
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
Preflight request for history
OPTIONS /api/users/me/history HTTP/1.1
Host:
Accept: */*
returns 200 with OPTIONS, GET, PUT and DELETE
No content
Add or update an event to user's history. The event's type, the project ids and the uri are passed in the request body.
To update the event's name, the eventId is required to retrieve the corresponding event. The project list related to the event is stored in database but is never queried (no filters on project).
user history query to save
PUT /api/users/me/history HTTP/1.1
Host:
Accept: */*
returns 200 when event is added or updated.
No content
Preflight request for history
OPTIONS /api/users/me/history/event HTTP/1.1
Host:
Accept: */*
returns OPTIONS and DELETE
No content
Delete user event by id.
user history event id to delete
DELETE /api/users/me/history/event?id={eventId} HTTP/1.1
Host:
Accept: */*
Returns 204 (No Content) : idempotent
No content
Delete user history by type.
type of user history event
DELETE /api/users/me/history?type={type} HTTP/1.1
Host:
Accept: */*
Returns 204 (No Content) : idempotent
{
"error": true,
"success": true
}
Retrieves the batch search list for the user issuing the request filter with the given criteria, and the total of batch searches matching the criteria.
If from/size are not given their default values are 0, meaning that all the results are returned. BatchDate must be a list of 2 items (the first one for the starting date and the second one for the ending date) If defined publishState is a string equals to "0" or "1"
POST /api/batch/search HTTP/1.1
Host:
Content-Type: */*
Accept: */*
Content-Length: 249
{
"size": 1,
"from": 1,
"sort": "text",
"order": "ASC",
"query": "text",
"field": "text",
"queries": [
"text"
],
"project": [],
"batchDate": [
"text"
],
"state": [
"text"
],
"publishState": "text",
"withQueries": true,
"queriesExcluded": true,
"contentTypes": [
"text"
],
"sorted": true
}
the list of batch searches with the total batch searches for the query
{
"items": [],
"pagination": {
"count": 1,
"from": 1,
"size": 1,
"total": 1
}
}
Get all user's projects
GET /api/project/ HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
default response
[]
Creates a project
POST /api/project/ HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 908
{
"name": "text",
"sourcePath": {
"absolute": true,
"parent": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"root": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"fileName": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"label": "text",
"description": "text",
"publisherName": "text",
"maintainerName": "text",
"logoUrl": "text",
"sourceUrl": "text",
"creationDate": "2025-04-21T15:33:55.841Z",
"updateDate": "2025-04-21T15:33:55.841Z"
}
No content
Updates a project
PUT /api/project/{id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 908
{
"name": "text",
"sourcePath": {
"absolute": true,
"parent": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"root": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"fileName": {
"absolute": true,
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"fileSystem": {
"open": true,
"readOnly": true,
"separator": "text",
"rootDirectories": {},
"fileStores": {},
"userPrincipalLookupService": {}
},
"nameCount": 1
},
"label": "text",
"description": "text",
"publisherName": "text",
"maintainerName": "text",
"logoUrl": "text",
"sourceUrl": "text",
"creationDate": "2025-04-21T15:33:55.841Z",
"updateDate": "2025-04-21T15:33:55.841Z"
}
No content
Download files from a search query.
Expected parameters are:
If the query is a string it is taken as an ES query string, else it is a raw JSON query (without the query part), see org.elasticsearch.index.query.WrapperQueryBuilder that is used to wrap the query.
POST /api/task/batchDownload HTTP/1.1
Host:
Content-Type: */*
Accept: */*
Content-Length: 42
{
"options": {
"ANY_ADDITIONAL_PROPERTY": {}
}
}
returns 200 and the json task id
{
"taskId": "text"
}
Creates a new batch search based on a previous one given its id, and enqueue it for running
source batch id
POST /api/task/batchSearch/copy/{sourcebatchid} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 44
{
"name": "my new batch",
"description": "desc"
}
text
Creates a new batch search. This is a multipart form with 9 fields:
name, description, csvFile, published, fileTypes, paths, fuzziness, phrase_matches, query_template.
Queries with less than two characters are filtered.
To make a request manually, you can create a file like:
--BOUNDARY
Content-Disposition: form-data; name="name"
my batch search
--BOUNDARY
Content-Disposition: form-data; name="description"
search description
--BOUNDARY
Content-Disposition: form-data; name="csvFile"; filename="search.csv"
Content-Type: text/csv
Obama
skype
test
query three
--BOUNDARY--
Content-Disposition: form-data; name="published"
true
--BOUNDARY--
Then curl with
curl -i -XPOST localhost:8080/api/batch/search/prj1,prj2 -H 'Content-Type: multipart/form-data; boundary=BOUNDARY' --data-binary @/home/dev/multipart.txt
you'll maybe have to replace \n with \r\n with sed -i 's/$/^M/g' ~/multipart.txt
Coma-separated list of projects
{"value":"prj1,prj2"}
POST /api/task/batchSearch/{coma_separated_projects} HTTP/1.1
Host:
Content-Type: multipart/form-data
Accept: */*
Content-Length: 148
{
"name": "text",
"description": "text",
"csvFile": "text",
"published": true,
"fileTypes": null,
"tags": null,
"paths": null,
"fuzziness": 1,
"phrase_matches": true
}
No content
Indexes files from the queue.
POST /api/task/batchUpdate/index HTTP/1.1
Host:
Content-Type: */*
Accept: */*
Content-Length: 42
{
"options": {
"ANY_ADDITIONAL_PROPERTY": {}
}
}
{
"taskId": "text"
}
Indexes files in a directory (with docker, it is the mounted directory that is scanned).
POST /api/task/batchUpdate/index/file HTTP/1.1
Host:
Content-Type: */*
Accept: */*
Content-Length: 42
{
"options": {
"ANY_ADDITIONAL_PROPERTY": {}
}
}
returns 200 and the list of tasks created
{
"error": true,
"success": true
}
Create a task with JSON body
task id
PUT /api/task/{id} HTTP/1.1
Host:
Content-Type: */*
Accept: */*
Content-Length: 333
{
"id": "text",
"name": "text",
"state": "CREATED",
"progress": 1,
"createdAt": "2025-04-21T15:33:55.841Z",
"retriesLeft": 1,
"completedAt": "2025-04-21T15:33:55.841Z",
"args": {
"ANY_ADDITIONAL_PROPERTY": {}
},
"result": {
"value": {}
},
"error": {
"name": "text",
"message": "text",
"cause": "text",
"stacktrace": [],
"@type": "text"
},
"latch": {
"taskState": "CREATED"
}
}
No content